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

Side by Side Diff: LayoutTests/fast/xpath/4XPath/Core/test_node_test.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 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../js/resources/js-test-pre.js"></script> 4 <script src="../../../../resources/js-test.js"></script>
5 <script src="test.js"></script> 5 <script src="test.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div id="console"></div> 8 <div id="console"></div>
9 9
10 <script> 10 <script>
11 function nsResolver(prefix) { 11 function nsResolver(prefix) {
12 if (prefix == 'bar') 12 if (prefix == 'bar')
13 return 'http://foo.com'; 13 return 'http://foo.com';
14 return null; 14 return null;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 shouldBe("nodeInResult(ROOT, result)", "false"); 50 shouldBe("nodeInResult(ROOT, result)", "false");
51 shouldBe("nodeInResult(PI, result)", "true"); 51 shouldBe("nodeInResult(PI, result)", "true");
52 52
53 result = DOM.evaluate("//processing-instruction('xml-stylesheet')", ROOT, nu ll, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 53 result = DOM.evaluate("//processing-instruction('xml-stylesheet')", ROOT, nu ll, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
54 shouldBe("nodeInResult(PI, result)", "true"); 54 shouldBe("nodeInResult(PI, result)", "true");
55 shouldBe("nodeInResult(PI2, result)", "false"); 55 shouldBe("nodeInResult(PI2, result)", "false");
56 56
57 </script> 57 </script>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/4XPath/Core/test_core_functions.html ('k') | LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698