blob: 2490f05b3e80aa67a0c70a9cb12be282fa0e15b2 [file] [log] [blame]
<!doctype html>
<title>Shadow DOM v0 features</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>