Home | History | Annotate | Download | only in script-tests
      1 description(
      2 'This test checks that CSS property names work round trip in the transition property.'
      3 );
      4 
      5 var element = document.createElement('a');
      6 
      7 element.style.webkitTransitionProperty = "height";
      8 shouldBe("element.style.webkitTransitionProperty", "'height'");
      9 
     10 element.style.webkitTransitionProperty = "opacity";
     11 shouldBe("element.style.webkitTransitionProperty", "'opacity'");
     12 
     13 var successfullyParsed = true;
     14