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

Side by Side Diff: LayoutTests/fast/xpath/node-name-case-sensitivity.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 </head> 4 </head>
5 <body> 5 <body>
6 <p id="sometext"> 6 <p id="sometext">
7 <STRONG>strong</STRONG><strong>strong</strong><FOO>FOO</FOO><foo>foo</foo> 7 <STRONG>strong</STRONG><strong>strong</strong><FOO>FOO</FOO><foo>foo</foo>
8 </p> 8 </p>
9 <div id="console"></div> 9 <div id="console"></div>
10 <script type="text/javascript"> 10 <script type="text/javascript">
(...skipping 20 matching lines...) Expand all
31 31
32 var doc = (new DOMParser).parseFromString('<p id="sometext" xmlns="http://ww w.w3.org/1999/xhtml"><STRONG>strong</STRONG><strong>strong</strong><FOO xmlns="" >FOO</FOO><foo xmlns="">foo</foo></p>', 'application/xhtml+xml'); 32 var doc = (new DOMParser).parseFromString('<p id="sometext" xmlns="http://ww w.w3.org/1999/xhtml"><STRONG>strong</STRONG><strong>strong</strong><FOO xmlns="" >FOO</FOO><foo xmlns="">foo</foo></p>', 'application/xhtml+xml');
33 33
34 testXML('//*[@id="sometext"]//x:strong', '1'); 34 testXML('//*[@id="sometext"]//x:strong', '1');
35 testXML('//*[@id="sometext"]//x:Strong', '0'); 35 testXML('//*[@id="sometext"]//x:Strong', '0');
36 testXML('//*[@id="Sometext"]//x:strong', '0'); 36 testXML('//*[@id="Sometext"]//x:strong', '0');
37 testXML('//*[@id="sometext"]//foo', '1'); 37 testXML('//*[@id="sometext"]//foo', '1');
38 testXML('//*[@id="sometext"]//FOO', '1'); 38 testXML('//*[@id="sometext"]//FOO', '1');
39 39
40 </script> 40 </script>
41 <script src="../js/resources/js-test-post.js"></script>
42 </body> 41 </body>
43 </html> 42 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/invalid-functions.html ('k') | LayoutTests/fast/xpath/null-namespace-in-html.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698