https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c642338c23cc660223a73948b9fdd1bc9cda13ed authored by Domenic Denicola on 02 April 2018, 19:26:38 UTC
Actually fix things
Tip revision: c642338
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