| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <head> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../resources/js-test.js"></script> |
| 5 <style type="text/css" media="screen"> | 5 <style type="text/css" media="screen"> |
| 6 #test { | 6 #test { |
| 7 position: absolute; | 7 position: absolute; |
| 8 left: 0; | 8 left: 0; |
| 9 top: 100px; | 9 top: 100px; |
| 10 height: 100px; | 10 height: 100px; |
| 11 width: 100px; | 11 width: 100px; |
| 12 background-color: blue; | 12 background-color: blue; |
| 13 animation-duration: 1s; | 13 animation-duration: 1s; |
| 14 animation-timing-function: linear; | 14 animation-timing-function: linear; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 shouldBeEqualToString("keyframeRule.cssRules[1].cssText", "0% { left: 200px; }")
; | 48 shouldBeEqualToString("keyframeRule.cssRules[1].cssText", "0% { left: 200px; }")
; |
| 49 shouldBeEqualToString("keyframeRule.cssRules[1].keyText", "0%"); | 49 shouldBeEqualToString("keyframeRule.cssRules[1].keyText", "0%"); |
| 50 shouldBeEqualToString("keyframeRule.cssRules[1].style.cssText", "left: 200px;"); | 50 shouldBeEqualToString("keyframeRule.cssRules[1].style.cssText", "left: 200px;"); |
| 51 | 51 |
| 52 shouldThrow("new CSSKeyframesRule().name", "'TypeError: Illegal constructor'"); | 52 shouldThrow("new CSSKeyframesRule().name", "'TypeError: Illegal constructor'"); |
| 53 | 53 |
| 54 document.body.removeChild(testContainer); | 54 document.body.removeChild(testContainer); |
| 55 </script> | 55 </script> |
| 56 </body> | 56 </body> |
| 57 </html> | 57 </html> |
| OLD | NEW |