Update web-platform-tests to revision b'6aa16a6888fcf6dd3ee2eac2e911c2d7c353d193'

This commit is contained in:
WPT Sync Bot 2023-04-25 11:37:17 +00:00
parent d577d4489a
commit ea44238f3a
411 changed files with 9896 additions and 468 deletions

View file

@ -4,7 +4,9 @@
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.target { color: red; }
@layer {
.target { color: red; }
}
</style>
<div id="target" class="target"></div>
<script>
@ -99,6 +101,14 @@
importCondition: "supports(font-format(invalid))",
matches: false
},
{
importCondition: "layer(A.B) supports(font-format(opentype))",
matches: true
},
{
importCondition: "layer supports(selector(a))",
matches: true
},
];
let target = document.getElementById("target");
for (let testCase of testCases) {