Skip to content

Commit

Permalink
Bug 1915882 [wpt PR 47888] - Rename ::select-fallback-datalist to ::p…
Browse files Browse the repository at this point in the history
…icker(select), a=testonly

Automatic update from web-platform-tests
Rename ::select-fallback-datalist to ::picker(select)

This was resolved here:
w3c/csswg-drafts#10758 (comment)

Fixed: 361562102
Change-Id: I38e8c552049b45704c1ee50db45e3300041ff1a8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5817433
Reviewed-by: David Baron <dbaron@chromium.org>
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1349454}

--

wpt-commits: 078a8e9e31b19c98cfad420f51a71d210ee63718
wpt-pr: 47888
  • Loading branch information
josepharhar authored and moz-wptsync-bot committed Sep 1, 2024
1 parent 50b15fa commit 37e28d9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
appearance: base-select;
}

select::select-fallback-datalist {
select::picker(select) {
transition-behavior: allow-discrete;
transition-duration: 100s;
transition-property: display, overlay, opacity, color;
Expand All @@ -21,12 +21,12 @@
color: black;
}

select::select-fallback-datalist:popover-open {
select::picker(select):popover-open {
opacity: 1;
color: rgb(200, 0, 0);
}
@starting-style {
select::select-fallback-datalist:popover-open {
select::picker(select):popover-open {
opacity: 0;
color: black;
}
Expand Down Expand Up @@ -54,5 +54,5 @@
await new Promise(requestAnimationFrame);
assert_equals(getComputedStyle(firstOption).color, 'rgb(100, 0, 0)',
'option color should start animating when opening the picker.');
}, 'select::select-fallback-datalist should support author provided top layer animations.');
}, 'select::picker(select) should support author provided top layer animations.');
</script>

0 comments on commit 37e28d9

Please sign in to comment.