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

Side by Side Diff: LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr.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 <script src="test.js"></script> 5 <script src="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 /* 11 /*
12 IEEE 754 says: 12 IEEE 754 says:
13 13
14 +-Infinity * +-Infinity = +-Infinity 14 +-Infinity * +-Infinity = +-Infinity
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 shouldBe('DOM.evaluate("\'5\' > \'Hi\'", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue', 'false'); 209 shouldBe('DOM.evaluate("\'5\' > \'Hi\'", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue', 'false');
210 shouldBe('DOM.evaluate("\'5\' >= \'Hi\'", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'false'); 210 shouldBe('DOM.evaluate("\'5\' >= \'Hi\'", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'false');
211 shouldBe('DOM.evaluate("\'5\' < @attr31", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'true'); 211 shouldBe('DOM.evaluate("\'5\' < @attr31", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'true');
212 shouldBe('DOM.evaluate("\'5\' <= @attr31", CHILD1, null, XPathResult.ANY_TYP E, null).booleanValue', 'true'); 212 shouldBe('DOM.evaluate("\'5\' <= @attr31", CHILD1, null, XPathResult.ANY_TYP E, null).booleanValue', 'true');
213 shouldBe('DOM.evaluate("\'5\' > @attr31", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'false'); 213 shouldBe('DOM.evaluate("\'5\' > @attr31", CHILD1, null, XPathResult.ANY_TYPE , null).booleanValue', 'false');
214 shouldBe('DOM.evaluate("\'5\' >= @attr31", CHILD1, null, XPathResult.ANY_TYP E, null).booleanValue', 'false'); 214 shouldBe('DOM.evaluate("\'5\' >= @attr31", CHILD1, null, XPathResult.ANY_TYP E, null).booleanValue', 'false');
215 215
216 </script> 216 </script>
217 </body> 217 </body>
218 </html> 218 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html ('k') | LayoutTests/fast/xpath/4XPath/Core/test_predicate_list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698