Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/cssui/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
r: 0
spec: "http://www.w3.org/TR/css3-ui/"
title: "CSS3 UI"
17 changes: 17 additions & 0 deletions tests/cssui/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
test("CSS UI text-overflow", function() {
var elem = document.createElement("div");

assert( H.test.cssProp( elem, "textOverflow", true ), "textOverflow" );
});

test("CSS UI box-sizing", function() {
var elem = document.createElement("div");

assert( H.test.cssProp( elem, "boxSizing", true ), "boxSizing" );
});

test("CSS UI Pointer Events", function() {
var elem = document.createElement("div");

assert( H.test.cssProp( elem, "pointerEvents", true ), "pointerEvents supported" );
});