Update web-platform-tests to revision b'17375f41ccf41e081764d2786ec535dede108c47' (#32426)

This commit is contained in:
Servo WPT Sync 2024-06-01 23:56:27 -04:00 committed by GitHub
parent b28314d33e
commit dd2de1836b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
391 changed files with 6903 additions and 1455 deletions

View file

@ -1,3 +1,9 @@
[scope-implicit-external.html]
[@scope with external stylesheet]
expected: FAIL
[@scope with external stylesheet through link element]
expected: FAIL
[@scope with external stylesheet through @import]
expected: FAIL

View file

@ -7,3 +7,6 @@
[Specificity wins over proximity]
expected: FAIL
[Identical root with further proximity is not ignored]
expected: FAIL

View file

@ -0,0 +1,2 @@
[scope-shadow-sharing.html]
expected: FAIL

View file

@ -22,3 +22,36 @@
[@scope (#main) { @scope (.a) { .b { } } }]
expected: FAIL
[@scope (#main) { .b { } } and .b]
expected: FAIL
[@scope (#main) to (.b) { .a { } } and .a]
expected: FAIL
[@scope (#main, .foo, .bar) { #a { } } and #a]
expected: FAIL
[@scope (#main) { div.b { } } and div.b]
expected: FAIL
[@scope (#main) { :scope .b { } } and .a .b]
expected: FAIL
[@scope (#main) { & .b { } } and #main .b]
expected: FAIL
[@scope (#main) { div .b { } } and div .b]
expected: FAIL
[@scope (#main) { @scope (.a) { .b { } } } and .b]
expected: FAIL
[@scope (#main) { :scope .b { } } and :scope .b]
expected: FAIL
[@scope { & .b { } } and :scope .b]
expected: FAIL
[@scope (#main) { > .a { } } and :where(#main) > .a]
expected: FAIL