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

Side by Side Diff: LayoutTests/fast/xpath/string-value.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../resources/js-test.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(
11 '<?xml version="1.0" encoding="ISO-8859-1"?>' + 11 '<?xml version="1.0" encoding="ISO-8859-1"?>' +
12 '<!DOCTYPE doc []>' + 12 '<!DOCTYPE doc []>' +
13 '<?xml-stylesheet "Data" ?>' + 13 '<?xml-stylesheet "Data" ?>' +
14 '<!' + '-- comment -->' + 14 '<!' + '-- comment -->' +
(...skipping 23 matching lines...) Expand all
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 </body> 46 </body>
47 </html> 47 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/py-dom-xpath/predicates.html ('k') | LayoutTests/fast/xpath/substring-after.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698