Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/historical.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Shadow DOM v0 features should NOT be present</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
test(() => {
assert_false('createShadowRoot' in Element.prototype)
}, 'element.createShadowRoot should not exist')
test(() => {
assert_false('getDestinationInsertionPoints' in Element.prototype)
}, 'element.getDestinationInsertionPoints should not exist')
test(() => {
assert_false('getDestinationInsertionPoints' in Text.prototype)
}, 'text.getDestinationInsertionPoints should not exist')
test(() => {
assert_false('path' in Event.prototype)
}, 'event.path should not exist')
test(() => {
assert_false('HTMLContentElement' in window)
}, 'HTMLContentElement should not exist')
</script>