summaryrefslogtreecommitdiffstats
path: root/dom/webidl/DOMTokenList.webidl
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2020-01-04 20:41:41 -0500
committerGaming4JC <g4jc@hyperbola.info>2020-01-26 15:50:18 -0500
commit1674f8f750b650e6d5fe2245f2c9bcfb5de48230 (patch)
treea462599f1c6fac0ac09364606ba4ce304f1375bc /dom/webidl/DOMTokenList.webidl
parentcc533eaee5b800a534b93484598779debcdf5591 (diff)
downloadUXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar
UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.gz
UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.lz
UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.xz
UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.zip
Bug 1340027 - Part 1: Add DOM CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom/webidl/DOMTokenList.webidl')
-rw-r--r--dom/webidl/DOMTokenList.webidl12
1 files changed, 6 insertions, 6 deletions
diff --git a/dom/webidl/DOMTokenList.webidl b/dom/webidl/DOMTokenList.webidl
index a1ea243b3..69663d055 100644
--- a/dom/webidl/DOMTokenList.webidl
+++ b/dom/webidl/DOMTokenList.webidl
@@ -14,17 +14,17 @@ interface DOMTokenList {
readonly attribute unsigned long length;
getter DOMString? item(unsigned long index);
boolean contains(DOMString token);
- [Throws]
+ [CEReactions, Throws]
void add(DOMString... tokens);
- [Throws]
+ [CEReactions, Throws]
void remove(DOMString... tokens);
- [Throws]
+ [CEReactions, Throws]
void replace(DOMString token, DOMString newToken);
- [Throws]
+ [CEReactions, Throws]
boolean toggle(DOMString token, optional boolean force);
- [Throws]
+ [CEReactions, Throws]
boolean supports(DOMString token);
- [SetterThrows]
+ [CEReactions, SetterThrows]
attribute DOMString value;
stringifier DOMString ();
iterable<DOMString?>;