Index: LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents-owner-test-001.html |
diff --git a/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents-owner-test-001.html b/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents-owner-test-001.html |
deleted file mode 100644 |
index fbea36ce27a203ed70e7f7adc31b467c56cf8d16..0000000000000000000000000000000000000000 |
--- a/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents-owner-test-001.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<title>HTML Templates: The template contents owner document (no browsing context)</title> |
-<meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> |
-<meta name="assert" content="Even if template's enclosing document has no browsing context, it gets its own template contents owner"> |
-<link rel="help" href="http://www.w3.org/TR/2013/WD-html-templates-20130214/#definitions"> |
-<script src="../../../../../../../resources/testharness.js"></script> |
-<script src="../../../../../../../resources/testharnessreport.js"></script> |
-<script src='/html/resources/common.js'></script> |
-<link rel="stylesheet" href="../../../../../../../resources/testharness.css"> |
-</head> |
-<body> |
-<div id="log"></div> |
-<script type="text/javascript"> |
- |
- |
-test(function() { |
- var doc = newHTMLDocument(); |
- var template = doc.createElement('template'); |
- |
- doc.body.appendChild(template); |
- |
- assert_not_equals(template.content.ownerDocument, doc, 'Wrong template content owner'); |
- |
-}, 'Test the template contents owner document when enclosing document has ' |
- + 'no browsing content. Template element is created by createElement()'); |
- |
- |
- |
-test(function() { |
- var doc = newHTMLDocument(); |
- |
- doc.body.innerHTML = '<template><div>some text</div></template>'; |
- |
- var template = doc.querySelector('template'); |
- |
- assert_not_equals(template.content.ownerDocument, doc, 'Wrong template content owner'); |
- |
-}, 'Test the template contents owner document when enclosing document has ' |
- + 'no browsing content. Template element is created by innerHTML'); |
- |
-</script> |
-</body> |
-</html> |