diff --git a/tests/cssanimation/config.yml b/tests/cssanimation/config.yml new file mode 100644 index 0000000..6952b73 --- /dev/null +++ b/tests/cssanimation/config.yml @@ -0,0 +1,4 @@ +--- + r: 0 + spec: "http://www.w3.org/TR/css3-animations/" + title: "CSS3 Animation" diff --git a/tests/cssanimation/test.js b/tests/cssanimation/test.js new file mode 100644 index 0000000..c331444 --- /dev/null +++ b/tests/cssanimation/test.js @@ -0,0 +1,4 @@ +test("CSS Animation", function() { + var div = document.createElement("div"); + assert( H.test.cssProp( div, "animationName", true ), "animationName supported" ); +});