blob: 27e619aabbcf674774dbccbe4b3162475b7a2596 [file] [log] [blame]
description(
'This test checks that CSS property names work round trip in the transition property.'
);
var element = document.createElement('a');
element.style.webkitTransitionProperty = "height";
shouldBe("element.style.webkitTransitionProperty", "'height'");
element.style.webkitTransitionProperty = "opacity";
shouldBe("element.style.webkitTransitionProperty", "'opacity'");