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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/ranges/Range-intersectsNode.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 <title>Range.intersectsNode() tests</title> 2 <title>Range.intersectsNode() tests</title>
3 <link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name> 3 <link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name>
4 <meta name=timeout content=long> 4 <meta name=timeout content=long>
5 <div id=log></div> 5 <div id=log></div>
6 <script src=../../../../resources/testharness.js></script> 6 <script src=../../../../resources/testharness.js></script>
7 <script src=../../../../resources/testharnessreport.js></script> 7 <script src=../../../../resources/testharnessreport.js></script>
8 <script src=../common.js></script> 8 <script src=../common.js></script>
9 <script> 9 <script>
10 "use strict"; 10 "use strict";
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 // "Return false." 62 // "Return false."
63 assert_equals(range.intersectsNode(node), false, 63 assert_equals(range.intersectsNode(node), false,
64 "Must return false if (parent, offset) is not before range end or (paren t, offset + 1) is not after range start"); 64 "Must return false if (parent, offset) is not before range end or (paren t, offset + 1) is not after range start");
65 }, "Node " + i + " " + testNodes[i] + ", range " + j + " " + testRanges[j]); 65 }, "Node " + i + " " + testNodes[i] + ", range " + j + " " + testRanges[j]);
66 } 66 }
67 } 67 }
68 68
69 testDiv.style.display = "none"; 69 testDiv.style.display = "none";
70 </script> 70 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698