| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/html-element-list.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/serializing-html-fragments/outerHTML.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/html-element-list.js
|
| similarity index 64%
|
| copy from third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/serializing-html-fragments/outerHTML.html
|
| copy to third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/html-element-list.js
|
| index b8f544cfd2e46fc2ba4fef7c3ad4acce4ed28c0b..6eea8d9964f7351fe39067c9106e50e89ae170dd 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/serializing-html-fragments/outerHTML.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/syntax/html-element-list.js
|
| @@ -1,17 +1,4 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <head>
|
| - <title>HTML Test: element.outerHTML to verify HTML fragment serialization algorithm</title>
|
| - <link rel="author" title="Intel" href="http://www.intel.com/">
|
| - <link rel="help" href="https://html.spec.whatwg.org/multipage/#html-fragment-serialization-algorithm">
|
| - <link rel="help" href="https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#widl-Element-outerHTML">
|
| - <script src="../../../../../resources/testharness.js"></script>
|
| - <script src="../../../../../resources/testharnessreport.js"></script>
|
| - </head>
|
| - <body>
|
| - <div id="log"></div>
|
| - <script>
|
| - var element = [
|
| +var elements_with_end_tag = [
|
| "a",
|
| "abbr",
|
| "address",
|
| @@ -132,9 +119,9 @@
|
| //"strike",
|
| //"tt",
|
| //"xmp",
|
| - ];
|
| +];
|
|
|
| - var noEndTag = [
|
| +var elements_without_end_tag = [
|
| "area",
|
| "base",
|
| "br",
|
| @@ -150,22 +137,4 @@
|
| "source",
|
| "track",
|
| "wbr",
|
| - ];
|
| -
|
| - test(function() {
|
| - element.forEach(function(ele) {
|
| - test(function() {
|
| - var e = document.createElement(ele);
|
| - assert_equals(e.outerHTML, "<" + ele + "></" + ele + ">", ele + " node created." );
|
| - }, "Node for " + ele);
|
| - });
|
| - noEndTag.forEach(function(ele) {
|
| - test(function() {
|
| - var e = document.createElement(ele);
|
| - assert_equals(e.outerHTML, "<" + ele + ">", ele + " node created." );
|
| - }, "Node for " + ele);
|
| - });
|
| - }, document.title);
|
| - </script>
|
| - </body>
|
| -</html>
|
| +];
|
|
|