aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLBodyElement.webidl
diff options
context:
space:
mode:
authorConnor Brewster <connor.brewster@eagles.oc.edu>2017-07-10 14:47:03 -0600
committerConnor Brewster <connor.brewster@eagles.oc.edu>2017-07-18 12:22:20 -0600
commit2460997ee18917bda1cdb68e46b7fd5520c3ade7 (patch)
treedb8d87d4a3971e2326b54a0203e838cf94b296e1 /components/script/dom/webidls/HTMLBodyElement.webidl
parent438191e0b207fd6294a465149a37c63f32ce9161 (diff)
downloadservo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.tar.gz
servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.zip
Add CEReactions where needed
Diffstat (limited to 'components/script/dom/webidls/HTMLBodyElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLBodyElement.webidl12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/HTMLBodyElement.webidl b/components/script/dom/webidls/HTMLBodyElement.webidl
index f2e9104f275..fa645dac60b 100644
--- a/components/script/dom/webidls/HTMLBodyElement.webidl
+++ b/components/script/dom/webidls/HTMLBodyElement.webidl
@@ -11,17 +11,17 @@ HTMLBodyElement implements WindowEventHandlers;
// https://html.spec.whatwg.org/multipage/#HTMLBodyElement-partial
partial interface HTMLBodyElement {
- [TreatNullAs=EmptyString] attribute DOMString text;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString text;
// https://github.com/servo/servo/issues/8715
- //[TreatNullAs=EmptyString] attribute DOMString link;
+ //[CEReactions, TreatNullAs=EmptyString] attribute DOMString link;
// https://github.com/servo/servo/issues/8716
- //[TreatNullAs=EmptyString] attribute DOMString vLink;
+ //[CEReactions, TreatNullAs=EmptyString] attribute DOMString vLink;
// https://github.com/servo/servo/issues/8717
- //[TreatNullAs=EmptyString] attribute DOMString aLink;
+ //[CEReactions, TreatNullAs=EmptyString] attribute DOMString aLink;
- [TreatNullAs=EmptyString] attribute DOMString bgColor;
- attribute DOMString background;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [CEReactions] attribute DOMString background;
};