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

Side by Side Diff: LayoutTests/fast/xpath/4XPath/Core/test_node_test.html

Issue 48903019: Delete js-test-post.js. (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="../../../js/resources/js-test-pre.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>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 result = DOM.evaluate("//processing-instruction()", ROOT, null, XPathResult. ORDERED_NODE_SNAPSHOT_TYPE, null); 49 result = DOM.evaluate("//processing-instruction()", ROOT, null, XPathResult. ORDERED_NODE_SNAPSHOT_TYPE, null);
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 <script src="../../../js/resources/js-test-post.js"></script>
59 </body> 58 </body>
60 </html> 59 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/4XPath/Core/test_location_path.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