| OLD | NEW |
| 1 Test at-rule parsing for @-webkit-filter. | 1 Test at-rule parsing for @-webkit-filter. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 ======================================== | 7 ======================================== |
| 8 Filter at-rule symbol tests. | 8 Filter at-rule symbol tests. |
| 9 ======================================== | 9 ======================================== |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 Missing rule body. | 39 Missing rule body. |
| 40 @-webkit-filter my-filter | 40 @-webkit-filter my-filter |
| 41 PASS insertRuleException instanceof DOMException is true | 41 PASS insertRuleException instanceof DOMException is true |
| 42 PASS insertRuleException.code is DOMException.SYNTAX_ERR | 42 PASS insertRuleException.code is DOMException.SYNTAX_ERR |
| 43 | 43 |
| 44 Missing opening brace. | 44 Missing opening brace. |
| 45 @-webkit-filter my-filter } | 45 @-webkit-filter my-filter } |
| 46 PASS insertRuleException instanceof DOMException is true | 46 PASS insertRuleException instanceof DOMException is true |
| 47 PASS insertRuleException.code is DOMException.SYNTAX_ERR | 47 PASS insertRuleException.code is DOMException.SYNTAX_ERR |
| 48 | |
| 49 Missing closing brace. | |
| 50 @-webkit-filter my-filter { | |
| 51 PASS insertRuleException instanceof DOMException is true | |
| 52 PASS insertRuleException.code is DOMException.SYNTAX_ERR | |
| 53 PASS successfullyParsed is true | 48 PASS successfullyParsed is true |
| 54 | 49 |
| 55 TEST COMPLETE | 50 TEST COMPLETE |
| 56 | 51 |
| OLD | NEW |