Skip to content

Commit 10fc056

Browse files
committed
createEvent should increase tag count by 1
1 parent 7517937 commit 10fc056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/dom/document.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
let byTagNameAll = document.getElementsByTagName('*');
6161
// If you add a script block (or change the HTML in any other way on this
6262
// page), this test will break. Adjust it accordingly.
63-
testing.expectEqual(20, byTagNameAll.length);
63+
testing.expectEqual(21, byTagNameAll.length);
6464
testing.expectEqual('html', byTagNameAll.item(0).localName);
6565
testing.expectEqual('SCRIPT', byTagNameAll.item(11).tagName);
6666

0 commit comments

Comments
 (0)