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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/syntax/serializing-html-fragments/outerHTML.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>HTML Test: element.outerHTML to verify HTML fragment serialization al gorithm</title> 4 <title>HTML Test: element.outerHTML to verify HTML fragment serialization al gorithm</title>
5 <link rel="author" title="Intel" href="http://www.intel.com/"> 5 <link rel="author" title="Intel" href="http://www.intel.com/">
6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#html-fragment -serialization-algorithm"> 6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#html-fragment -serialization-algorithm">
7 <link rel="help" href="https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.h tml#widl-Element-outerHTML"> 7 <link rel="help" href="https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.h tml#widl-Element-outerHTML">
8 <script src="../../../../../resources/testharness.js"></script> 8 <script src="../../../../../resources/testharness.js"></script>
9 <script src="../../../../../resources/testharnessreport.js"></script> 9 <script src="../../../../../resources/testharnessreport.js"></script>
10 <script src="../html-element-list.js"></script> 10 <script src="../html-element-list.js"></script>
(...skipping 11 matching lines...) Expand all
22 elements_without_end_tag.forEach(function(ele) { 22 elements_without_end_tag.forEach(function(ele) {
23 test(function() { 23 test(function() {
24 var e = document.createElement(ele); 24 var e = document.createElement(ele);
25 assert_equals(e.outerHTML, "<" + ele + ">", ele + " node created." ) ; 25 assert_equals(e.outerHTML, "<" + ele + ">", ele + " node created." ) ;
26 }, "Node for " + ele); 26 }, "Node for " + ele);
27 }); 27 });
28 }, document.title); 28 }, document.title);
29 </script> 29 </script>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698