File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
crates/web-sys/webidls/enabled Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 10
10
* liability, trademark and document use rules apply.
11
11
*/
12
12
13
+ // updated using https:// dom.spec.whatwg.org/ #interface- domtokenlist
14
+
13
15
interface DOMTokenList {
14
16
readonly attribute unsigned long length;
15
17
getter DOMString? item(unsigned long index);
@@ -27,5 +29,5 @@ interface DOMTokenList {
27
29
[CEReactions, SetterThrows]
28
30
attribute DOMString value;
29
31
stringifier DOMString ();
30
- iterable< DOMString? >;
32
+ iterable< DOMString> ;
31
33
};
Original file line number Diff line number Diff line change 10
10
* liability, trademark and document use rules apply.
11
11
*/
12
12
13
+ // Updated using https:// dom.spec.whatwg.org/ #interface- nodelist
14
+
13
15
[ProbablyShortLivingWrapper]
14
16
interface NodeList {
15
17
getter Node? item(unsigned long index);
16
18
readonly attribute unsigned long length;
17
- iterable< Node? >;
19
+ iterable< Node> ;
18
20
};
You can’t perform that action at this time.
0 commit comments