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

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

Issue 14083017: Invalid block doesn't make declaration invalid. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Created 7 years, 7 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 | « no previous file | Source/core/css/CSSGrammar.y.in » ('j') | Source/core/css/CSSGrammar.y.in » ('J')
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 30 matching lines...) Expand all
41 display:none; 41 display:none;
42 } 42 }
43 43
44 .malformed3 { 44 .malformed3 {
45 ;*display:expression(function(){}) 45 ;*display:expression(function(){})
46 } 46 }
47 #test5 { 47 #test5 {
48 display:none; 48 display:none;
49 } 49 }
50 50
51 #test6 {
52 display: none !important;
53 display: block !important {invalid_block};
54 }
55
56 #test7 {
57 display: none !important;
58 }
59 #test7 {
60 display: block !important {invalid_block}
61 }
62
51 /* Successfully parsed */ 63 /* Successfully parsed */
52 #last { 64 #last {
53 display:block; 65 display:block;
54 } 66 }
55 </style> 67 </style>
56 </head> 68 </head>
57 <body> 69 <body>
58 <div class="to_be_hidden" id="test1">FAIL: Test 1</div> 70 <div class="to_be_hidden" id="test1">FAIL: Test 1</div>
59 <div class="to_be_hidden" id="test2">FAIL: Test 2</div> 71 <div class="to_be_hidden" id="test2">FAIL: Test 2</div>
60 <div class="to_be_hidden" id="test3">FAIL: Test 3</div> 72 <div class="to_be_hidden" id="test3">FAIL: Test 3</div>
61 <div class="to_be_hidden" id="test4">FAIL: Test 4</div> 73 <div class="to_be_hidden" id="test4">FAIL: Test 4</div>
62 <div class="to_be_hidden" id="test5">FAIL: Test 5</div> 74 <div class="to_be_hidden" id="test5">FAIL: Test 5</div>
75 <div class="to_be_hidden" id="test6">FAIL: Test 6</div>
76 <div class="to_be_hidden" id="test7">FAIL: Test 7</div>
63 <div class="to_be_shown" id="last">PASS</div> 77 <div class="to_be_shown" id="last">PASS</div>
64 </body> 78 </body>
65 </html> 79 </html>
66 80
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/CSSGrammar.y.in » ('j') | Source/core/css/CSSGrammar.y.in » ('J')

Powered by Google App Engine
This is Rietveld 408576698