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="../resources/js-test.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"); |
11 document.body.appendChild(testContainer); | 11 document.body.appendChild(testContainer); |
12 | 12 |
13 testContainer.innerHTML = '<div style="width:500px;height:500px"><div id="test">
hello</div></div>'; | 13 testContainer.innerHTML = '<div style="width:500px;height:500px"><div id="test">
hello</div></div>'; |
14 | 14 |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 735 </body> |
736 </html> | 736 </html> |
OLD | NEW |