Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -18,19 +18,19 @@
}
/* Note: 150px - 2px, since .container has a 1px border */
@container size(min-width: 148px) {
@container (min-width: 148px) {
div { display: flex; }
span { flex: 1; }
}
/* Note: 200px - 2px, since .container has a 1px border */
@container size(min-width: 198px) {
@container (min-width: 198px) {
div { display: revert; }
span { display: block; }
}
/* Should not apply: */
@container size(min-width: 199px) {
@container (min-width: 199px) {
* { color: red; background-color: red; }
}
</style>