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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Node-childNodes.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 <meta charset=utf-8> 2 <meta charset=utf-8>
3 <title>Node.childNodes</title> 3 <title>Node.childNodes</title>
4 <link rel=help href="https://dom.spec.whatwg.org/#dom-node-childnodes"> 4 <link rel=help href="https://dom.spec.whatwg.org/#dom-node-childnodes">
5 <link rel=author title="Tim Taubert" href="mailto:ttaubert@mozilla.com"> 5 <link rel=author title="Tim Taubert" href="mailto:ttaubert@mozilla.com">
6 <link rel=author title="Ms2ger" href="mailto:Ms2ger@gmail.com"> 6 <link rel=author title="Ms2ger" href="mailto:Ms2ger@gmail.com">
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 <div id="log"></div> 9 <div id="log"></div>
10 <script> 10 <script>
(...skipping 28 matching lines...) Expand all
39 }, "Node.childNodes on an Element."); 39 }, "Node.childNodes on an Element.");
40 40
41 test(function() { 41 test(function() {
42 check_parent_node(document.createDocumentFragment()); 42 check_parent_node(document.createDocumentFragment());
43 }, "Node.childNodes on a DocumentFragment."); 43 }, "Node.childNodes on a DocumentFragment.");
44 44
45 test(function() { 45 test(function() {
46 check_parent_node(new Document()); 46 check_parent_node(new Document());
47 }, "Node.childNodes on a Document."); 47 }, "Node.childNodes on a Document.");
48 </script> 48 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698