blob: c0d6ad15ad2c8be9198f9172fd8a7931c6411955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<script src="../../js/resources/js-test-pre.js"></script>
<script>
description('Test HTMLTemplateElement content ownerDocument in XHTML Document');
shouldBeFalse('document instanceof HTMLDocument');
var template4 = document.createElement('template');
var templateContentOwnerDocument = template4.content.ownerDocument;
shouldNotBe('document', 'templateContentOwnerDocument');
shouldBeFalse('templateContentOwnerDocument instanceof HTMLDocument');
</script>
</html>
|