Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / CSSStyleDeclaration / script-tests / transition-property-names.js
blob27e619aabbcf674774dbccbe4b3162475b7a2596
1 description(
2 'This test checks that CSS property names work round trip in the transition property.'
3 );
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'");