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

Side by Side Diff: LayoutTests/fast/xpath/py-dom-xpath/paths.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script src="../xpath-test-pre.js"></script> 4 <script src="../xpath-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="console"></div> 7 <div id="console"></div>
8 8
9 <script> 9 <script>
10 var doc = (new DOMParser).parseFromString( 10 var doc = (new DOMParser).parseFromString(
11 '<doc>' + 11 '<doc>' +
12 '<para id="1" />' + 12 '<para id="1" />' +
13 '<div id="2" />' + 13 '<div id="2" />' +
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 '<para id="3" />' + 247 '<para id="3" />' +
248 '<chapter id="4" />' + 248 '<chapter id="4" />' +
249 '<para id="5" />' + 249 '<para id="5" />' +
250 '</doc>', 250 '</doc>',
251 'application/xml'); 251 'application/xml');
252 test(doc, doc.documentElement, "child::*[self::chapter or self::appendix][positi on()=last()]", [doc.getElementsByTagName("chapter")[1]]); 252 test(doc, doc.documentElement, "child::*[self::chapter or self::appendix][positi on()=last()]", [doc.getElementsByTagName("chapter")[1]]);
253 253
254 </script> 254 </script>
255 </body> 255 </body>
256 </html> 256 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/py-dom-xpath/expressions.html ('k') | LayoutTests/fast/xpath/py-dom-xpath/predicates.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698