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

Side by Side Diff: LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217.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 <!-- http://mail.python.org/pipermail/xml-sig/2003-February/009070.html --> 1 <!-- http://mail.python.org/pipermail/xml-sig/2003-February/009070.html -->
2 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 2 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
3 <html> 3 <html>
4 <head> 4 <head>
5 <script src="../../../js/resources/js-test-pre.js"></script> 5 <script src="../../../../resources/js-test.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>
11 SRC = '<?xml version=\'1.0\'?>\ 11 SRC = '<?xml version=\'1.0\'?>\
12 <alpha>\ 12 <alpha>\
13 <beta no="a">\ 13 <beta no="a">\
14 <gamma>\ 14 <gamma>\
15 <delta>1</delta>\ 15 <delta>1</delta>\
(...skipping 25 matching lines...) Expand all
41 nodeset = doc.evaluate(expr, doc, null, XPathResult.UNORDERED_NODE_SNAPSHOT_ TYPE, null); 41 nodeset = doc.evaluate(expr, doc, null, XPathResult.UNORDERED_NODE_SNAPSHOT_ TYPE, null);
42 shouldBe('nodeset.snapshotLength', '1') 42 shouldBe('nodeset.snapshotLength', '1')
43 43
44 expr = '/alpha/beta[@no = 1]' 44 expr = '/alpha/beta[@no = 1]'
45 nodeset = doc.evaluate(expr, doc, null, XPathResult.UNORDERED_NODE_SNAPSHOT_ TYPE, null); 45 nodeset = doc.evaluate(expr, doc, null, XPathResult.UNORDERED_NODE_SNAPSHOT_ TYPE, null);
46 shouldBe('nodeset.snapshotLength', '0') 46 shouldBe('nodeset.snapshotLength', '0')
47 47
48 </script> 48 </script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698