2 'This test checks that CSS property names work round trip in the transition property.'
5 var element = document.createElement('a');
7 element.style.webkitTransitionProperty = "height";
8 shouldBe("element.style.webkitTransitionProperty", "'height'");
10 element.style.webkitTransitionProperty = "opacity";
11 shouldBe("element.style.webkitTransitionProperty", "'opacity'");