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 The test loads the same stylesheet to different frames and then mutates them. Th
e mutations should not affect other frames. | 2 The test loads the same stylesheet to different frames and then mutates them. Th
e mutations should not affect other frames. |
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 Test 0 | 7 Test 0 |
7 -------------------------------------- | 8 -------------------------------------- |
8 PASS getComputedStyle(testElement, null).getPropertyValue('background-color') is
'rgb(255, 0, 0)' | 9 PASS getComputedStyle(testElement, null).getPropertyValue('background-color') is
'rgb(255, 0, 0)' |
9 | 10 |
10 #testdiv { background-color: green; } | 11 #testdiv { background-color: green; } |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 @-webkit-keyframes bounce { | 246 @-webkit-keyframes bounce { |
246 0% { left: 0px; } | 247 0% { left: 0px; } |
247 100% { left: 200px; } | 248 100% { left: 200px; } |
248 } | 249 } |
249 @font-face { font-family: Bar; } | 250 @font-face { font-family: Bar; } |
250 | 251 |
251 PASS successfullyParsed is true | 252 PASS successfullyParsed is true |
252 | 253 |
253 TEST COMPLETE | 254 TEST COMPLETE |
254 | 255 |
OLD | NEW |