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

Side by Side 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, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/compare-nan.js ('k') | test/mjsunit/smi-ops.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 --> must work at beginning of file! 1 --> must work at beginning of file!
2 2
3 // Copyright 2008 the V8 project authors. All rights reserved. 3 // Copyright 2008 the V8 project authors. All rights reserved.
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 14 matching lines...) Expand all
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 var x = 1; 30 var x = 1;
31 --> this must be ignored... 31 --> this must be ignored...
32 --> so must this... 32 --> so must this...
33 --> and this. 33 --> and this.
34 x-->0; 34 x-->0;
35 assertEquals(0, x); 35 assertEquals(0, x, 'a');
36 36
37 37
38 var x = 0; x <!-- x 38 var x = 0; x <!-- x
39 assertEquals(0, x); 39 assertEquals(0, x, 'b');
40 40
41 var x = 1; x <!--x 41 var x = 1; x <!--x
42 assertEquals(1, x); 42 assertEquals(1, x, 'c');
43 43
44 var x = 2; x <!-- x; x = 42; 44 var x = 2; x <!-- x; x = 42;
45 assertEquals(2, x); 45 assertEquals(2, x, 'd');
46 46
47 var x = 1; x <! x--; 47 var x = 1; x <! x--;
48 assertEquals(0, x); 48 assertEquals(0, x, 'e');
49 49
50 var x = 1; x <!- x--; 50 var x = 1; x <!- x--;
51 assertEquals(0, x); 51 assertEquals(0, x, 'f');
52 52
53 var b = true <! true; 53 var b = true <! true;
54 assertFalse(b); 54 assertFalse(b, 'g');
55 55
56 var b = true <!- true; 56 var b = true <!- true;
57 assertFalse(b); 57 assertFalse(b, 'h');
OLDNEW
« 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