summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/DocumentFragment-constructor.html
blob: e97a7c483605cc111a429564fa193cc36eb8d07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<meta charset="utf-8">
<title>DocumentFragment constructor</title>
<link rel="help" href="https://dom.spec.whatwg.org/#dom-documentfragment-documentfragment">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
"use strict";

test(() => {
  const fragment = new DocumentFragment();
  assert_equals(fragment.ownerDocument, document);
}, "Sets the owner document to the current global object associated document");

test(() => {
  const fragment = new DocumentFragment();
  const text = document.createTextNode("");
  fragment.appendChild(text);
  assert_equals(fragment.firstChild, text);
}, "Create a valid document DocumentFragment");
</script>