| OLD | NEW |
| (Empty) | |
| 1 <html> |
| 2 <body> |
| 3 <p>Test for Blink bug <a href="https://code.google.com/p/chromium/issues/det
ail?id=228870">228870</a>: CSS parser incorrectly handles invalid @-webkit-keyfr
ames key values</p> |
| 4 <style> |
| 5 @-webkit-keyframes foo { |
| 6 0 {foo: bar;} |
| 7 } |
| 8 |
| 9 #output-1:before { |
| 10 content: "PASSED"; |
| 11 } |
| 12 |
| 13 @-webkit-keyframes foo { |
| 14 0, 100% {foo: bar;} |
| 15 } |
| 16 |
| 17 #output-2:before { |
| 18 content: "PASSED"; |
| 19 } |
| 20 |
| 21 @-webkit-keyframes foo { |
| 22 10%, none {foo: bar;} |
| 23 } |
| 24 |
| 25 #output-3:before { |
| 26 content: "PASSED"; |
| 27 } |
| 28 |
| 29 @-webkit-keyframes foo { |
| 30 -10%, from {foo: bar;} |
| 31 } |
| 32 |
| 33 #output-4:before { |
| 34 content: "PASSED"; |
| 35 } |
| 36 </style> |
| 37 <div id="output-1"> (INTEGER single key)</div> |
| 38 <div id="output-2"> (INTEGER in a key list)</div> |
| 39 <div id="output-3"> (unknown IDENT in a key list)</div> |
| 40 <div id="output-4"> (out-of-range percentage key value in a key list)</div> |
| 41 </body> |
| 42 </html> |
| OLD | NEW |