| OLD | NEW |
| 1 CONSOLE WARNING: 'CSSKeyframesRule.insertRule()' is deprecated and will be remov
ed in M45, around August 2015. Please use 'CSSKeyframesRule.appendRule()' instea
d. |
| 1 This tests the CSSKeyframeRule and CSSKeyframesRule interfaces. | 2 This tests the CSSKeyframeRule and CSSKeyframesRule interfaces. |
| 2 | 3 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 5 |
| 5 | 6 |
| 6 Constants | 7 Constants |
| 7 PASS CSSKeyframeRule exists on Window object | 8 PASS CSSKeyframeRule exists on Window object |
| 8 PASS CSSKeyframesRule exists on Window object | 9 PASS CSSKeyframesRule exists on Window object |
| 9 PASS WEBKIT_KEYFRAME_RULE exists on Window.CSSRule object | 10 PASS WEBKIT_KEYFRAME_RULE exists on Window.CSSRule object |
| 10 PASS WEBKIT_KEYFRAMES_RULE exists on Window.CSSRule object | 11 PASS WEBKIT_KEYFRAMES_RULE exists on Window.CSSRule object |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 Set a keyframe key with a null value | 117 Set a keyframe key with a null value |
| 117 PASS rules13.item(0).keyText = null; threw exception SyntaxError: Failed to set
the 'keyText' property on 'CSSKeyframeRule': The key 'null' is invalid and canno
t be parsed. | 118 PASS rules13.item(0).keyText = null; threw exception SyntaxError: Failed to set
the 'keyText' property on 'CSSKeyframeRule': The key 'null' is invalid and canno
t be parsed. |
| 118 PASS rules13.length is 2 | 119 PASS rules13.length is 2 |
| 119 PASS rules13.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE | 120 PASS rules13.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE |
| 120 PASS rules13.item(0).keyText is '0%' | 121 PASS rules13.item(0).keyText is '0%' |
| 121 PASS rules13.item(1).keyText is '90%,100%' | 122 PASS rules13.item(1).keyText is '90%,100%' |
| 122 PASS successfullyParsed is true | 123 PASS successfullyParsed is true |
| 123 | 124 |
| 124 TEST COMPLETE | 125 TEST COMPLETE |
| 125 | 126 |
| OLD | NEW |