From 2dbb54359d81827837ec5e7e8593a3496b868bf3 Mon Sep 17 00:00:00 2001 From: Matt Kelly Date: Mon, 9 Apr 2012 17:05:13 -0700 Subject: [PATCH] Adding cssanimation test. --- tests/cssanimation/config.yml | 4 ++++ tests/cssanimation/test.js | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 tests/cssanimation/config.yml create mode 100644 tests/cssanimation/test.js 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" ); +});