Enable CSS tests for all modules we partially support.

(Except Fonts, on the assumption #8374 will land first.)
This commit is contained in:
Geoffrey Sneddon
2015-11-09 22:25:17 +00:00
parent f3075d1319
commit 756d745cb8
1096 changed files with 3838 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
[cssom-view-window-screen-interface.htm]
type: testharness
[Screen.availWidth is readonly]
expected: FAIL
[Screen.availHeight is readonly]
expected: FAIL
[Screen.width is readonly]
expected: FAIL
[Screen.height is readonly]
expected: FAIL
[window.screen.width >= 0 && window.screen.width < 6000000]
expected: FAIL
[window.screen.height >= 0 && window.screen.height < 6000000]
expected: FAIL
[window.screen.availWidth >= 0 && window.screen.availWidth <= window.screen.width]
expected: FAIL
[window.screen.availHeight >= 0 && window.screen.availHeight <= window.screen.height]
expected: FAIL