Files
servo/tests/wpt/meta/css/selectors/is-where-not.html.ini
Oriol Brufau 963104e5fc 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.
2023-08-15 00:28:32 +00:00

55 lines
1.3 KiB
INI

[is-where-not.html]
[:not(:is(#a)) matches expected elements]
expected: FAIL
[:not(:where(#b)) matches expected elements]
expected: FAIL
[:not(:where(:root #c)) matches expected elements]
expected: FAIL
[:not(:is(#a, #b)) matches expected elements]
expected: FAIL
[:not(:is(#b div)) matches expected elements]
expected: FAIL
[:not(:is(#a div, div + div)) matches expected elements]
expected: FAIL
[:not(:is(span)) matches expected elements]
expected: FAIL
[:not(:is(div)) matches expected elements]
expected: FAIL
[:not(:is(*|div)) matches expected elements]
expected: FAIL
[:not(:is(*|*)) matches expected elements]
expected: FAIL
[:not(:is(*)) matches expected elements]
expected: FAIL
[:not(:is(svg|div)) matches expected elements]
expected: FAIL
[:not(:is(:not(div))) matches expected elements]
expected: FAIL
[:not(:is(span, b, i)) matches expected elements]
expected: FAIL
[:not(:is(span, b, i, div)) matches expected elements]
expected: FAIL
[:not(:is(#b ~ div div, * + #c)) matches expected elements]
expected: FAIL
[:not(:is(div > :not(#e))) matches expected elements]
expected: FAIL
[:not(:is(div > :not(:where(#e, #f)))) matches expected elements]
expected: FAIL