Skip to content

Commit 64f4bdb

Browse files
committed
[cssom-view] Fix WebIDL error: [NewObject] sequence<T> is invalid
1 parent 8f78f65 commit 64f4bdb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cssom-view/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ dictionary ScrollIntoViewOptions : ScrollOptions {
10281028
};
10291029

10301030
partial interface Element {
1031-
[NewObject] sequence&lt;DOMRect> getClientRects();
1031+
sequence&lt;DOMRect> getClientRects();
10321032
[NewObject] DOMRect getBoundingClientRect();
10331033
void scrollIntoView();
10341034
void scrollIntoView((boolean or object) arg);
@@ -1410,7 +1410,7 @@ The objects the methods described below return must be static.
14101410

14111411
<pre class=idl>
14121412
partial interface Range {
1413-
[NewObject] sequence&lt;DOMRect> getClientRects();
1413+
sequence&lt;DOMRect> getClientRects();
14141414
[NewObject] DOMRect getBoundingClientRect();
14151415
};
14161416
</pre>

0 commit comments

Comments
 (0)