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

Side by Side Diff: LayoutTests/fast/css/parsing-error-recovery.html

Issue 13382002: Merge 147028 "REGRESSION (r146588): Cannot correctly display Chi..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1453/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/WebCore/css/CSSGrammar.y.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 </script> 6 </script>
7 <style> 7 <style>
8 .to_be_shown { 8 .to_be_shown {
9 display:none; 9 display:none;
10 color:green; 10 color:green;
(...skipping 23 matching lines...) Expand all
34 34
35 /* Malformed declaration list should be skipped */ 35 /* Malformed declaration list should be skipped */
36 .malformed2 { 36 .malformed2 {
37 a:link { color: blue;} 37 a:link { color: blue;}
38 a:active { color: red;} 38 a:active { color: red;}
39 } 39 }
40 #test4 { 40 #test4 {
41 display:none; 41 display:none;
42 } 42 }
43 43
44 .malformed3 {
45 ;*display:expression(function(){})
46 }
47 #test5 {
48 display:none;
49 }
50
44 /* Successfully parsed */ 51 /* Successfully parsed */
45 #last { 52 #last {
46 display:block; 53 display:block;
47 } 54 }
48 </style> 55 </style>
49 </head> 56 </head>
50 <body> 57 <body>
51 <div class="to_be_hidden" id="test1">FAIL: Test 1</div> 58 <div class="to_be_hidden" id="test1">FAIL: Test 1</div>
52 <div class="to_be_hidden" id="test2">FAIL: Test 2</div> 59 <div class="to_be_hidden" id="test2">FAIL: Test 2</div>
53 <div class="to_be_hidden" id="test3">FAIL: Test 3</div> 60 <div class="to_be_hidden" id="test3">FAIL: Test 3</div>
54 <div class="to_be_hidden" id="test4">FAIL: Test 4</div> 61 <div class="to_be_hidden" id="test4">FAIL: Test 4</div>
62 <div class="to_be_hidden" id="test5">FAIL: Test 5</div>
55 <div class="to_be_shown" id="last">PASS</div> 63 <div class="to_be_shown" id="last">PASS</div>
56 </body> 64 </body>
57 </html> 65 </html>
58 66
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/WebCore/css/CSSGrammar.y.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698