https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e9b052e94617ea4883b2a3ad9b2f33ea456efe46 authored by Chris Lilley on 02 May 2018, 16:18:16 UTC
correct link
Tip revision: e9b052e
historical.html
<!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>
back to top