summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/upgrading/Document-importNode-customized-builtins.html
blob: 91c9ea8aee6a1175e0dea21247b1cb448dd5aa9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<link rel="help" href="https://dom.spec.whatwg.org/#dom-document-importnode">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/custom-elements-helpers.js"></script>
<body>
<script>
test_with_window((w, doc) => {
  class MyDiv extends HTMLDivElement {}
  class MyDiv2 extends w.HTMLDivElement {}
  customElements.define('my-div', MyDiv, { extends: 'div' });
  w.customElements.define('my-div', MyDiv2, { extends: 'div' });

  let original = document.createElement('div', { is: 'my-div' });
  assert_true(original instanceof MyDiv);

  let imported = doc.importNode(original);
  assert_true(imported instanceof MyDiv2);
}, 'built-in: document.importNode() should import custom elements successfully');

test_with_window((w, doc) => {
  class MyDiv2 extends w.HTMLDivElement {}
  w.customElements.define('my-div2', MyDiv2, { extends: 'div' });

  let original = document.createElement('div', { is: 'my-div2' });
  assert_equals(original.constructor, HTMLDivElement);

  let imported = doc.importNode(original);
  assert_true(imported instanceof MyDiv2);
}, 'built-in: document.importNode() should import "undefined" custom elements successfully');
</script>
</body>