Skip to content

Commit

Permalink
HTML: document.applets is obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk authored and pull[bot] committed Oct 31, 2023
1 parent 104404c commit 1159328
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions shadow-dom/leaktests/html-collection.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,13 @@
['document.links should not contain shadow nodes', 'links'],
['document.anchors should not contain shadow nodes', 'anchors'],
['document.embeds should not contain shadow nodes', 'embeds'],
['document.plugins should not contain shadow nodes', 'plugins'],
['document.applets should not contain shadow nodes', 'applets']];
['document.plugins should not contain shadow nodes', 'plugins']];

generate_tests(testCollection, testParams);

test(() => {
assert_equals(document.applets.length, 0);
}, 'document.applets should not contain any nodes');

</script>
</html>

0 comments on commit 1159328

Please sign in to comment.