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" ); +});