• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1description(
2'This test checks that CSS property names work round trip in the transition property.'
3);
4
5var element = document.createElement('a');
6
7element.style.webkitTransitionProperty = "height";
8shouldBe("element.style.webkitTransitionProperty", "'height'");
9
10element.style.webkitTransitionProperty = "opacity";
11shouldBe("element.style.webkitTransitionProperty", "'opacity'");
12
13var successfullyParsed = true;
14