Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents.html

Issue 1305983002: web-platform-tests: Skip tests for <template>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents.html
diff --git a/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents.html b/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents.html
deleted file mode 100644
index 0c8e32a2ebd68a08899d168b9a74157a88d7f3a5..0000000000000000000000000000000000000000
--- a/LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents.html
+++ /dev/null
@@ -1,173 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>HTML Templates: The template contents is a DocumentFragment</title>
-<meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
-<meta name="assert" content="The template contents must be a DocumentFragment">
-<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_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a DocumentFragment');
-
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (empty template)');
-
-
-test(function() {
- var doc = newHTMLDocument();
- var template = doc.createElement('template');
-
- template.innerHTML = '<div>This is a div</div><span>This is a span</span>';
-
- doc.body.appendChild(template);
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a DocumentFragment');
-
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (non empty template)');
-
-
-
-test(function() {
- var doc = newHTMLDocument();
- var template = doc.createElement('template');
-
- template.innerHTML = '<div>This is a div</div>';
-
- doc.body.appendChild(template);
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
-
-}, 'The template contents must be a DocumentFragment (non empty template '
- + 'containing div which is an Element instance)');
-
-
-test(function() {
- var doc = newHTMLDocument();
- var template = doc.createElement('template');
-
- template.innerHTML = 'Some text';
-
- doc.body.appendChild(template);
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
-
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (not empty template '
- + 'containing text node)');
-
-
-test(function() {
- var doc = newHTMLDocument();
- var template = doc.createElement('template');
-
- template.innerHTML = '<template id="t2">Some text</template>';
-
- doc.body.appendChild(template);
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
- var nestedTemplate = template.content.querySelector("#t2");
- assert_equals(nestedTemplate.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Nested template content should be a documentFragment');
-
- assert_class_string(nestedTemplate.content, 'DocumentFragment',
- 'Nested template content class should be a DocumentFragment');
-
-
-}, 'The template contents must be a DocumentFragment (nested template '
- + 'containing a text node)');
-
-
-testInIFrame('../resources/template-contents-empty.html', function(context) {
- var doc = context.iframes[0].contentDocument;
-
- var template = doc.querySelector('template');
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-
-}, 'The template contents must be a DocumentFragment (the empty template tag '
- + 'inside HTML file loaded in iframe)');
-
-
-testInIFrame('../resources/template-contents.html', function(context) {
- var doc = context.iframes[0].contentDocument;
-
- var template = doc.querySelector('template');
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (non empty template '
- + 'tag inside HTML file loaded in iframe)');
-
-
-testInIFrame('../resources/template-contents-text.html', function(context) {
- var doc = context.iframes[0].contentDocument;
-
- var template = doc.querySelector('template');
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (the template tag '
- + 'with some text inside HTML file loaded in iframe)');
-
-
-testInIFrame('../resources/template-contents-nested.html', function(context) {
- var doc = context.iframes[0].contentDocument;
-
- var template = doc.querySelector('template');
-
- assert_equals(template.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Template content should be a documentFragment');
- assert_class_string(template.content, 'DocumentFragment',
- 'Template content class should be a DocumentFragment');
-
- var nestedTemplate = template.content.querySelector("template");
-
- assert_equals(nestedTemplate.content.nodeType, Node.DOCUMENT_FRAGMENT_NODE,
- 'Nested template content should be a documentFragment');
- assert_class_string(nestedTemplate.content, 'DocumentFragment',
- 'Nested template content class should be a DocumentFragment');
-
-}, 'The template contents must be a DocumentFragment (the template tag '
- + 'with nested template tag inside HTML file loaded in iframe)');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698