Run same tests for layout-2020 and layout-2013 (#30092)

Most tests were only being run for layout-2013, not for layout-2020.
This wasn't great since layout-2020 is now the default.

So this patch unifies the lists of included tests for both layouts.
For layout-2013 this implies adding css/css-content/, css/css-logical/
and css/css-masking/clip/.
For layout-2020 this implies adding several additional css tests, and
also tests like dom/, js/, html/, etc.
This commit is contained in:
Oriol Brufau 2023-08-15 02:28:32 +02:00 committed by GitHub
parent 78c7011240
commit 963104e5fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4797 changed files with 679983 additions and 5390 deletions

View file

@ -0,0 +1,3 @@
[checked-type-change.html]
[Evaluation of :checked changes on input type change.]
expected: FAIL

View file

@ -0,0 +1,9 @@
[checked.html]
[':checked' matches checked <input>s in checkbox and radio button states, selected <option>s]
expected: FAIL
[':checked' should no longer match <input>s whose type checkbox/radio has been removed]
expected: FAIL
[':checked' matches clicked checkbox and radio buttons]
expected: FAIL

View file

@ -0,0 +1,6 @@
[default.html]
[':default' matches <button>s that are their form's default button, <input>s of type submit/image that are their form's default button, checked <input>s and selected <option>s]
expected: FAIL
[':default' matches dynamically changed form's default buttons]
expected: FAIL

View file

@ -0,0 +1,12 @@
[dir-dynamic.html]
[Dynamically changing dir, text on input element]
expected: FAIL
[Dynamically changing dir, text on textarea element]
expected: FAIL
[Dynamically changing dir, text on div element]
expected: FAIL
[Dynamically changing dir, text on pre element]
expected: FAIL

View file

@ -0,0 +1,3 @@
[dir-html-input-dynamic-text.html]
[:dir on <input> isn't altered by text children]
expected: FAIL

View file

@ -0,0 +1,9 @@
[dir.html]
[':dir(rtl)' matches all elements whose directionality is 'rtl'.]
expected: FAIL
[':dir(ltr)' matches all elements whose directionality is 'ltr'.]
expected: FAIL
[':dir(ltr)' doesn't match elements not in the document.]
expected: FAIL

View file

@ -0,0 +1,3 @@
[dir01.html]
[direction doesn't affect :dir()]
expected: FAIL

View file

@ -1,18 +1,3 @@
[disabled.html]
[':disabled' should match only disabled elements]
expected: FAIL
[':disabled' should not match elements whose disabled attribute has been removed]
expected: FAIL
[':disabled' should also match elements whose disabled attribute has been set]
expected: FAIL
[':disabled' should also match elements whose disabled attribute has been set twice]
expected: FAIL
[':disabled' should also match disabled elements whose type has changed]
expected: FAIL
[':disabled' should not match elements not in the document]
[':disabled' should match elements that are appended to a disabled fieldset dynamically]
expected: FAIL

View file

@ -0,0 +1,4 @@
[focus-autofocus.html]
expected: TIMEOUT
[:focus selector should work with an autofocused element.]
expected: NOTRUN

View file

@ -0,0 +1,6 @@
[focus.html]
[editable elements are focusable]
expected: FAIL
[':focus' doesn't match focused elements in iframe]
expected: FAIL

View file

@ -0,0 +1,3 @@
[indeterminate-radio.html]
[:indeterminate and input type=radio]
expected: FAIL

View file

@ -0,0 +1,3 @@
[indeterminate-type-change.html]
[Evaluation of :indeterminate changes on input type change.]
expected: FAIL

View file

@ -0,0 +1,15 @@
[indeterminate.html]
[':progress' matches <input>s radio buttons whose radio button group contains no checked input and <progress> elements without value attribute]
expected: FAIL
[dynamically check a radio input in a radio button group]
expected: FAIL
[click on radio4 which is in the indeterminate state]
expected: FAIL
[removing progress2's value should put it in an indeterminate state]
expected: FAIL
[':progress' also matches <input> checkbox whose indeterminate IDL is set to true]
expected: FAIL

View file

@ -0,0 +1,6 @@
[inrange-outofrange-type-change.html]
[Evaluation of :in-range changes for input type change.]
expected: FAIL
[Evaluation of :out-of-range changes for input type change.]
expected: FAIL

View file

@ -0,0 +1,18 @@
[inrange-outofrange.html]
[':in-range' matches all elements that are candidates for constraint validation, have range limitations, and that are neither suffering from an underflow nor suffering from an overflow]
expected: FAIL
[':out-of-range' matches all elements that are candidates for constraint validation, have range limitations, and that are either suffering from an underflow or suffering from an overflow]
expected: FAIL
[':in-range' update number1's value < min]
expected: FAIL
[':out-of-range' update number1's value < min]
expected: FAIL
[':in-range' update number3's min < value]
expected: FAIL
[':out-of-range' update number3's min < value]
expected: FAIL

View file

@ -0,0 +1,3 @@
[readwrite-readonly-type-change.html]
[Evaluation of :required and :optional changes for input type change.]
expected: FAIL

View file

@ -0,0 +1,3 @@
[required-optional-hidden.html]
[Evaluation of :required and :optional changes for input type change.]
expected: FAIL

View file

@ -0,0 +1,18 @@
[required-optional.html]
[':required' matches required <input>s, <select>s and <textarea>s]
expected: FAIL
[':optional' matches elements <input>s, <select>s and <textarea>s that are not required]
expected: FAIL
[':required' doesn't match elements whose required attribute has been removed]
expected: FAIL
[':optional' matches elements whose required attribute has been removed]
expected: FAIL
[':required' matches elements whose required attribute has been added]
expected: FAIL
[':optional' doesn't match elements whose required attribute has been added]
expected: FAIL