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 transitions p
roperties.") | 8 description("Test the parsing and the computed style values of the transitions p
roperties.") |
9 | 9 |
10 var testContainer = document.createElement("div"); | 10 var testContainer = document.createElement("div"); |
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 shouldBe("computedStyle.webkitTransition", "'all 0s ease 0s'"); | 725 shouldBe("computedStyle.webkitTransition", "'all 0s ease 0s'"); |
726 | 726 |
727 style.transition = "none, none"; | 727 style.transition = "none, none"; |
728 shouldBe("style.transition", "''"); | 728 shouldBe("style.transition", "''"); |
729 shouldBe("computedStyle.transition", "'all 0s ease 0s'"); | 729 shouldBe("computedStyle.transition", "'all 0s ease 0s'"); |
730 shouldBe("style.webkitTransition", "''"); | 730 shouldBe("style.webkitTransition", "''"); |
731 shouldBe("computedStyle.webkitTransition", "'all 0s ease 0s'"); | 731 shouldBe("computedStyle.webkitTransition", "'all 0s ease 0s'"); |
732 | 732 |
733 document.body.removeChild(testContainer); | 733 document.body.removeChild(testContainer); |
734 </script> | 734 </script> |
735 <script src="../fast/js/resources/js-test-post.js"></script> | |
736 </body> | 735 </body> |
737 </html> | 736 </html> |
OLD | NEW |