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

Unified Diff: test/mjsunit/html-comments.js

Issue 151003: Add a compare stub on ARM. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/compare-nan.js ('k') | test/mjsunit/smi-ops.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/html-comments.js
===================================================================
--- test/mjsunit/html-comments.js (revision 2284)
+++ test/mjsunit/html-comments.js (working copy)
@@ -32,26 +32,26 @@
--> so must this...
--> and this.
x-->0;
-assertEquals(0, x);
+assertEquals(0, x, 'a');
var x = 0; x <!-- x
-assertEquals(0, x);
+assertEquals(0, x, 'b');
var x = 1; x <!--x
-assertEquals(1, x);
+assertEquals(1, x, 'c');
var x = 2; x <!-- x; x = 42;
-assertEquals(2, x);
+assertEquals(2, x, 'd');
var x = 1; x <! x--;
-assertEquals(0, x);
+assertEquals(0, x, 'e');
var x = 1; x <!- x--;
-assertEquals(0, x);
+assertEquals(0, x, 'f');
var b = true <! true;
-assertFalse(b);
+assertFalse(b, 'g');
var b = true <!- true;
-assertFalse(b);
+assertFalse(b, 'h');
« no previous file with comments | « test/mjsunit/compare-nan.js ('k') | test/mjsunit/smi-ops.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698