| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |