From d25e7870898e801f144140bf236aa8b7aad41dbf Mon Sep 17 00:00:00 2001 From: Matt Kelly Date: Mon, 9 Apr 2012 17:05:46 -0700 Subject: [PATCH] Adding cssoverflow test. --- tests/cssoverflow/config.yml | 4 ++++ tests/cssoverflow/test.js | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 tests/cssoverflow/config.yml create mode 100644 tests/cssoverflow/test.js diff --git a/tests/cssoverflow/config.yml b/tests/cssoverflow/config.yml new file mode 100644 index 0000000..55adb00 --- /dev/null +++ b/tests/cssoverflow/config.yml @@ -0,0 +1,4 @@ +--- + r: 1 + spec: "http://www.w3.org/TR/CSS2/visufx.html" + title: "CSS Overflow Scrolling" diff --git a/tests/cssoverflow/test.js b/tests/cssoverflow/test.js new file mode 100644 index 0000000..033099b --- /dev/null +++ b/tests/cssoverflow/test.js @@ -0,0 +1,4 @@ +test("CSS Overflow Scrolling", function() { + var elem = document.createElement("div"); + assert( H.test.cssProp( elem, "overflowScrolling", true ), "overflowScrolling supported" ); +});