Enable more css tests (#31469)

* Enable more css tests

In particular, these directories are no longer skipped:
 - CSS1 (has no tests)
 - css-box (except margin-trim)
 - css-cascade
 - css-display (except run-in)
 - css-easing
 - css-env
 - css-lists
 - css-namespaces
 - css-overflow
 - css-pseudo
 - css-sizing (except aspect-ratio and contain-intrinsic-size)
 - css-syntax
 - reference
 - support (has no tests)

* Sort list properly

* Explicitly list skipped directories

* Do not skip css tests by default

* Add expectations
This commit is contained in:
Oriol Brufau 2024-03-01 08:49:39 +01:00 committed by GitHub
parent 0beec63c86
commit 2b1d342102
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1357 changed files with 17727 additions and 66 deletions

View file

@ -0,0 +1,9 @@
[block-ellipsis-valid.html]
[e.style['block-ellipsis'\] = "none" should set the property value]
expected: FAIL
[e.style['block-ellipsis'\] = "auto" should set the property value]
expected: FAIL
[e.style['block-ellipsis'\] = "\\" etc., etc. \\"" should set the property value]
expected: FAIL

View file

@ -0,0 +1,6 @@
[continue-valid.html]
[e.style['continue'\] = "auto" should set the property value]
expected: FAIL
[e.style['continue'\] = "discard" should set the property value]
expected: FAIL

View file

@ -0,0 +1,18 @@
[line-clamp-valid.html]
[e.style['line-clamp'\] = "none" should set the property value]
expected: FAIL
[e.style['line-clamp'\] = "1" should set the property value]
expected: FAIL
[e.style['line-clamp'\] = "6" should set the property value]
expected: FAIL
[e.style['line-clamp'\] = "7 none" should set the property value]
expected: FAIL
[e.style['line-clamp'\] = "8 auto" should set the property value]
expected: FAIL
[e.style['line-clamp'\] = "9 \\" etc., etc. \\"" should set the property value]
expected: FAIL

View file

@ -0,0 +1,9 @@
[max-lines-valid.html]
[e.style['max-lines'\] = "none" should set the property value]
expected: FAIL
[e.style['max-lines'\] = "1" should set the property value]
expected: FAIL
[e.style['max-lines'\] = "6" should set the property value]
expected: FAIL

View file

@ -0,0 +1,42 @@
[overflow-clip-margin-computed.html]
[Property overflow-clip-margin value '0px']
expected: FAIL
[Property overflow-clip-margin value '10px']
expected: FAIL
[Property overflow-clip-margin value 'content-box']
expected: FAIL
[Property overflow-clip-margin value 'content-box 0px']
expected: FAIL
[Property overflow-clip-margin value 'content-box 10px']
expected: FAIL
[Property overflow-clip-margin value '10px content-box']
expected: FAIL
[Property overflow-clip-margin value 'padding-box']
expected: FAIL
[Property overflow-clip-margin value 'padding-box 0px']
expected: FAIL
[Property overflow-clip-margin value 'padding-box 10px']
expected: FAIL
[Property overflow-clip-margin value '10px padding-box']
expected: FAIL
[Property overflow-clip-margin value 'border-box']
expected: FAIL
[Property overflow-clip-margin value 'border-box 0px']
expected: FAIL
[Property overflow-clip-margin value 'border-box 10px']
expected: FAIL
[Property overflow-clip-margin value '10px border-box']
expected: FAIL

View file

@ -0,0 +1,39 @@
[overflow-clip-margin.html]
[e.style['overflow-clip-margin'\] = "10px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "content-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "content-box 10px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "10px content-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "0px content-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "padding-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "padding-box 0px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "padding-box 10px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "10px padding-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "border-box" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "border-box 0px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "border-box 10px" should set the property value]
expected: FAIL
[e.style['overflow-clip-margin'\] = "10px border-box" should set the property value]
expected: FAIL

View file

@ -0,0 +1,36 @@
[overflow-computed.html]
[Property overflow value 'clip']
expected: FAIL
[Property overflow value 'auto clip']
expected: FAIL
[Property overflow value 'clip auto']
expected: FAIL
[Property overflow value 'clip clip']
expected: FAIL
[Property overflow value 'clip hidden']
expected: FAIL
[Property overflow value 'clip scroll']
expected: FAIL
[Property overflow value 'clip visible']
expected: FAIL
[Property overflow value 'hidden clip']
expected: FAIL
[Property overflow value 'scroll clip']
expected: FAIL
[Property overflow value 'visible clip']
expected: FAIL
[Property overflow-y value 'clip']
expected: FAIL
[Property overflow-block value 'clip']
expected: FAIL

View file

@ -0,0 +1,12 @@
[overflow-valid.html]
[e.style['overflow'\] = "clip" should set the property value]
expected: FAIL
[e.style['overflow'\] = "clip clip" should set the property value]
expected: FAIL
[e.style['overflow-y'\] = "clip" should set the property value]
expected: FAIL
[e.style['overflow-block'\] = "clip" should set the property value]
expected: FAIL

View file

@ -0,0 +1,12 @@
[scrollbar-gutter-valid.html]
[e.style['scrollbar-gutter'\] = "auto" should set the property value]
expected: FAIL
[e.style['scrollbar-gutter'\] = "stable" should set the property value]
expected: FAIL
[e.style['scrollbar-gutter'\] = "stable both-edges" should set the property value]
expected: FAIL
[e.style['scrollbar-gutter'\] = "both-edges stable" should set the property value]
expected: FAIL

View file

@ -0,0 +1,6 @@
[text-overflow-computed.html]
[Property text-overflow value 'clip']
expected: FAIL
[Property text-overflow value 'ellipsis']
expected: FAIL

View file

@ -0,0 +1,6 @@
[text-overflow-valid.html]
[e.style['text-overflow'\] = "clip" should set the property value]
expected: FAIL
[e.style['text-overflow'\] = "ellipsis" should set the property value]
expected: FAIL

View file

@ -0,0 +1,9 @@
[webkit-line-clamp-valid.html]
[e.style['-webkit-line-clamp'\] = "none" should set the property value]
expected: FAIL
[e.style['-webkit-line-clamp'\] = "1" should set the property value]
expected: FAIL
[e.style['-webkit-line-clamp'\] = "6" should set the property value]
expected: FAIL