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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/rootNode.html

Issue 1988983002: Move the dom directory from web-platform-tests/ to wpt/. (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 <meta charset=utf-8> 4 <meta charset=utf-8>
5 <title>Node.prototype.rootNode</title> 5 <title>Node.prototype.rootNode</title>
6 <link rel="help" href="https://dom.spec.whatwg.org/#dom-node-rootnode"> 6 <link rel="help" href="https://dom.spec.whatwg.org/#dom-node-rootnode">
7 <script src="../../../../resources/testharness.js"></script> 7 <script src="../../../../resources/testharness.js"></script>
8 <script src="../../../../resources/testharnessreport.js"></script> 8 <script src="../../../../resources/testharnessreport.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 var processingInstruction = document.createProcessingInstruction('target', ' data'); 74 var processingInstruction = document.createProcessingInstruction('target', ' data');
75 parent.appendChild(processingInstruction) 75 parent.appendChild(processingInstruction)
76 assert_equals(processingInstruction.rootNode, fragment, 76 assert_equals(processingInstruction.rootNode, fragment,
77 'rootNode on a processing instruction node inside a document fragment mu st return the fragment'); 77 'rootNode on a processing instruction node inside a document fragment mu st return the fragment');
78 }, 'rootNode attribute must return a document fragment when a node is in the fra gment'); 78 }, 'rootNode attribute must return a document fragment when a node is in the fra gment');
79 79
80 </script> 80 </script>
81 </body> 81 </body>
82 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698