summaryrefslogtreecommitdiffstats
path: root/dom/webidl/CSSStyleDeclaration.webidl
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2020-01-04 21:49:24 -0500
committerGaming4JC <g4jc@hyperbola.info>2020-01-26 15:50:19 -0500
commitdb86d423e59f7dc8310182a78d9997509bf233a8 (patch)
tree8ff97148c14bac79ec13373a3b290b7ad7696c81 /dom/webidl/CSSStyleDeclaration.webidl
parent3fd2f619496d7c3a2d0a45ed3d44aead22d64c99 (diff)
downloadUXP-db86d423e59f7dc8310182a78d9997509bf233a8.tar
UXP-db86d423e59f7dc8310182a78d9997509bf233a8.tar.gz
UXP-db86d423e59f7dc8310182a78d9997509bf233a8.tar.lz
UXP-db86d423e59f7dc8310182a78d9997509bf233a8.tar.xz
UXP-db86d423e59f7dc8310182a78d9997509bf233a8.zip
Bug 1340027 - Part 3: Add CSSStyleDeclaration CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom/webidl/CSSStyleDeclaration.webidl')
-rw-r--r--dom/webidl/CSSStyleDeclaration.webidl6
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/webidl/CSSStyleDeclaration.webidl b/dom/webidl/CSSStyleDeclaration.webidl
index d9b2511de..561e5cce1 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;