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

Side by Side Diff: LayoutTests/fast/xpath/string-value.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
« no previous file with comments | « LayoutTests/fast/xpath/reverse-axes.html ('k') | LayoutTests/fast/xpath/substring-after.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 </head> 5 </head>
6 <body> 6 <body>
7 <div id="console"></div> 7 <div id="console"></div>
8 8
9 <script> 9 <script>
10 doc = (new DOMParser).parseFromString( 10 doc = (new DOMParser).parseFromString(
(...skipping 25 matching lines...) Expand all
36 shouldBe("doc.evaluate('.', doc, null, XPathResult.STRING_TYPE, null).string Value", "'0 1a-cdata-b2'"); 36 shouldBe("doc.evaluate('.', doc, null, XPathResult.STRING_TYPE, null).string Value", "'0 1a-cdata-b2'");
37 shouldBe("doc.evaluate('.', doc.documentElement, null, XPathResult.STRING_TY PE, null).stringValue", "'0 1a-cdata-b2'"); 37 shouldBe("doc.evaluate('.', doc.documentElement, null, XPathResult.STRING_TY PE, null).stringValue", "'0 1a-cdata-b2'");
38 shouldBe("doc.evaluate('.', PI, null, XPathResult.STRING_TYPE, null).stringV alue", "'\"Data\" '"); 38 shouldBe("doc.evaluate('.', PI, null, XPathResult.STRING_TYPE, null).stringV alue", "'\"Data\" '");
39 shouldBe("doc.evaluate('.', COMMENT, null, XPathResult.STRING_TYPE, null).st ringValue", "' comment '"); 39 shouldBe("doc.evaluate('.', COMMENT, null, XPathResult.STRING_TYPE, null).st ringValue", "' comment '");
40 shouldBe("doc.evaluate('.', CDATA, null, XPathResult.STRING_TYPE, null).stri ngValue", "'-cdata-'"); 40 shouldBe("doc.evaluate('.', CDATA, null, XPathResult.STRING_TYPE, null).stri ngValue", "'-cdata-'");
41 shouldBe("doc.evaluate('.', TEXT, null, XPathResult.STRING_TYPE, null).strin gValue", "'0 '"); 41 shouldBe("doc.evaluate('.', TEXT, null, XPathResult.STRING_TYPE, null).strin gValue", "'0 '");
42 shouldBe("doc.evaluate('.', EMPTY, null, XPathResult.STRING_TYPE, null).stri ngValue", "''"); 42 shouldBe("doc.evaluate('.', EMPTY, null, XPathResult.STRING_TYPE, null).stri ngValue", "''");
43 shouldBe("doc.evaluate('.', ATTR, null, XPathResult.STRING_TYPE, null).strin gValue", "'<&nbsp;>'"); 43 shouldBe("doc.evaluate('.', ATTR, null, XPathResult.STRING_TYPE, null).strin gValue", "'<&nbsp;>'");
44 44
45 </script> 45 </script>
46 <script src="../js/resources/js-test-post.js"></script>
47 </body> 46 </body>
48 </html> 47 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/reverse-axes.html ('k') | LayoutTests/fast/xpath/substring-after.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698