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

Side by Side Diff: LayoutTests/fast/xpath/attribute-node-predicate.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> 1 <!DOCTYPE html>
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="xpath-test-pre.js"></script> 5 <script src="xpath-test-pre.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 16 matching lines...) Expand all
27 result = document.evaluate(".//@id[2]/parent::*", ROOT, null, XPathResult.OR DERED_NODE_SNAPSHOT_TYPE, null); 27 result = document.evaluate(".//@id[2]/parent::*", ROOT, null, XPathResult.OR DERED_NODE_SNAPSHOT_TYPE, null);
28 checkSnapshot("//@id[2]/parent::*", result, []); 28 checkSnapshot("//@id[2]/parent::*", result, []);
29 29
30 result = document.evaluate(".//@id[string()='21']/parent::*", ROOT, null, XP athResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 30 result = document.evaluate(".//@id[string()='21']/parent::*", ROOT, null, XP athResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
31 checkSnapshot("//@id[string()='21']/parent::*", result, [CHILD21]); 31 checkSnapshot("//@id[string()='21']/parent::*", result, [CHILD21]);
32 32
33 result = document.evaluate(".//@id[string()='22']/parent::*", ROOT, null, XP athResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 33 result = document.evaluate(".//@id[string()='22']/parent::*", ROOT, null, XP athResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
34 checkSnapshot("//@id[string()='22']/parent::*", result, [CHILD22]); 34 checkSnapshot("//@id[string()='22']/parent::*", result, [CHILD22]);
35 35
36 </script> 36 </script>
37 <script src="../js/resources/js-test-post.js"></script>
38 </body> 37 </body>
39 </html> 38 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/attr-namespace.html ('k') | LayoutTests/fast/xpath/detached-subtree-invalidate-iterator.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698