https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 22354d237b5a89a7771d4329d02f3f7c8af17796 authored by François Doray on 29 March 2018, 16:39:25 UTC
Revert "bluetooth: FakeBluetoothChooser impl."
Tip revision: 22354d2
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