diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-04 21:49:24 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:19 -0500 |
commit | db86d423e59f7dc8310182a78d9997509bf233a8 (patch) | |
tree | 8ff97148c14bac79ec13373a3b290b7ad7696c81 /dom | |
parent | 3fd2f619496d7c3a2d0a45ed3d44aead22d64c99 (diff) | |
download | uxp-db86d423e59f7dc8310182a78d9997509bf233a8.tar.gz |
Bug 1340027 - Part 3: Add CSSStyleDeclaration CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom')
-rw-r--r-- | dom/webidl/CSSStyleDeclaration.webidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/webidl/CSSStyleDeclaration.webidl b/dom/webidl/CSSStyleDeclaration.webidl index d9b2511ded..561e5cce1b 100644 --- a/dom/webidl/CSSStyleDeclaration.webidl +++ b/dom/webidl/CSSStyleDeclaration.webidl @@ -10,7 +10,7 @@ interface CSSRule; interface CSSStyleDeclaration { - [SetterThrows] + [CEReactions, SetterThrows] attribute DOMString cssText; readonly attribute unsigned long length; @@ -22,9 +22,9 @@ interface CSSStyleDeclaration { [Throws] CSSValue? getPropertyCSSValue(DOMString property); DOMString getPropertyPriority(DOMString property); - [Throws] + [CEReactions, Throws] void setProperty(DOMString property, [TreatNullAs=EmptyString] DOMString value, [TreatNullAs=EmptyString] optional DOMString priority = ""); - [Throws] + [CEReactions, Throws] DOMString removeProperty(DOMString property); readonly attribute CSSRule? parentRule; |