OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 description("Test the parsing and the computed style values of the animations pr
operties.") | 8 description("Test the parsing and the computed style values of the animations pr
operties.") |
9 | 9 |
10 var testContainer = document.createElement("div"); | 10 var testContainer = document.createElement("div"); |
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 | 1066 |
1067 // FIXME : https://code.google.com/p/chromium/issues/detail?id=273092 | 1067 // FIXME : https://code.google.com/p/chromium/issues/detail?id=273092 |
1068 /*style.animation = "ease-in ease-otu 5s"; | 1068 /*style.animation = "ease-in ease-otu 5s"; |
1069 shouldBe("style.animation", "''"); | 1069 shouldBe("style.animation", "''"); |
1070 shouldBe("computedStyle.animation", "'none 0s ease 0s 1 normal none running'"); | 1070 shouldBe("computedStyle.animation", "'none 0s ease 0s 1 normal none running'"); |
1071 shouldBe("style.webkitAnimation", "''"); | 1071 shouldBe("style.webkitAnimation", "''"); |
1072 shouldBe("computedStyle.webkitAnimation", "'none 0s ease 0s 1 normal none runnin
g'");*/ | 1072 shouldBe("computedStyle.webkitAnimation", "'none 0s ease 0s 1 normal none runnin
g'");*/ |
1073 | 1073 |
1074 document.body.removeChild(testContainer); | 1074 document.body.removeChild(testContainer); |
1075 </script> | 1075 </script> |
1076 <script src="../fast/js/resources/js-test-post.js"></script> | |
1077 </body> | 1076 </body> |
1078 </html> | 1077 </html> |
OLD | NEW |