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

Side by Side Diff: test/mjsunit/html-comments.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years 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 --> 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 17 matching lines...) Expand all
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, 'a'); 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, 'b'); 39 assertEquals(0, x, 'b');
40 40
41 var x = 1; x <!--x 41 var x = 1; x; <!--x
42 assertEquals(1, x, 'c'); 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, 'd'); 45 assertEquals(2, x, 'd');
46 46
47 var x = 1; x <! x--; 47 var x = 1; x <! x--;
Rico 2011/12/08 10:24:37 why not ; here and below
Lasse Reichstein 2011/12/08 12:33:18 Actually, it shouldn't be above either. This test
48 assertEquals(0, x, 'e'); 48 assertEquals(0, x, 'e');
49 49
50 var x = 1; x <!- x--; 50 var x = 1; x <!- x--;
51 assertEquals(0, x, 'f'); 51 assertEquals(0, x, 'f');
52 52
53 var b = true <! true; 53 var b = true <! true;
54 assertFalse(b, 'g'); 54 assertFalse(b, 'g');
55 55
56 var b = true <!- true; 56 var b = true <!- true;
57 assertFalse(b, 'h'); 57 assertFalse(b, 'h');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698