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

Side by Side Diff: LayoutTests/fast/xpath/py-dom-xpath/predicates.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.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(
(...skipping 28 matching lines...) Expand all
39 test(doc, doc.documentElement, '//item[@id="2"]/following-sibling::item[1]', [I4 ]); 39 test(doc, doc.documentElement, '//item[@id="2"]/following-sibling::item[1]', [I4 ]);
40 test(doc, doc.documentElement, '//item[@id="5"]/preceding-sibling::item[1]', [I4 ]); 40 test(doc, doc.documentElement, '//item[@id="5"]/preceding-sibling::item[1]', [I4 ]);
41 test(doc, doc.documentElement, '//group[@id="g2"]/following::item[1]', [I4]); 41 test(doc, doc.documentElement, '//group[@id="g2"]/following::item[1]', [I4]);
42 test(doc, doc.documentElement, '//group[@id="g2"]/preceding::item[1]', [I2]); 42 test(doc, doc.documentElement, '//group[@id="g2"]/preceding::item[1]', [I2]);
43 test(doc, doc.documentElement, '//group[@id="g1"]/descendant-or-self::item[1]', [I2]); 43 test(doc, doc.documentElement, '//group[@id="g1"]/descendant-or-self::item[1]', [I2]);
44 test(doc, doc.documentElement, '//group[@id="g2"]/ancestor-or-self::*[1]', [G2]) ; 44 test(doc, doc.documentElement, '//group[@id="g2"]/ancestor-or-self::*[1]', [G2]) ;
45 test(doc, doc.documentElement, '//group/descendant::item[number(//choice/@index) *2]', [I5]); 45 test(doc, doc.documentElement, '//group/descendant::item[number(//choice/@index) *2]', [I5]);
46 test(doc, doc.documentElement, '(//item[@id="5"]/preceding-sibling::item)[1]', [ I2]); 46 test(doc, doc.documentElement, '(//item[@id="5"]/preceding-sibling::item)[1]', [ I2]);
47 47
48 </script> 48 </script>
49 <script src="../../js/resources/js-test-post.js"></script>
50 </body> 49 </body>
51 </html> 50 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/py-dom-xpath/paths.html ('k') | LayoutTests/fast/xpath/reverse-axes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698