Skip to content

Commit 71ea377

Browse files
committedJan 1, 2025
Bug 1937180 [wpt PR 49684] - Make customizable select options listen to mouseup, a=testonly
Automatic update from web-platform-tests Make customizable select options listen to mouseup mouseup is better than mousedown because it allows the user to click and drag to choose an option like appearance:auto already does. More justification here: whatwg/html#10762 (comment) Change-Id: Ifa63d497b7dcfbc3d07e19d6a7850bddf57f78fc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6077672 Commit-Queue: Joey Arhar <jarharchromium.org> Reviewed-by: Traian Captan <tcaptanchromium.org> Cr-Commit-Position: refs/heads/main{#1396126} -- wpt-commits: 0c1d19546fd4873bb9f4147f0bbf868e7b4f91b7 wpt-pr: 49684 UltraBlame original commit: 67679d9657af23ee3aa91fe6adc71e254e62fa41
1 parent 4e241bc commit 71ea377

File tree

1 file changed

+73
-17
lines changed

1 file changed

+73
-17
lines changed
 

‎testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-events.tentative.html

+73-17
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,7 @@
15271527
addEventListener
15281528
(
15291529
'
1530-
click
1530+
mouseup
15311531
'
15321532
(
15331533
e
@@ -1620,6 +1620,62 @@
16201620
wrapper
16211621
'
16221622
'
1623+
focusout
1624+
on
1625+
option2
1626+
at
1627+
select
1628+
'
1629+
'
1630+
focusout
1631+
on
1632+
option2
1633+
at
1634+
wrapper
1635+
'
1636+
'
1637+
focusin
1638+
on
1639+
select
1640+
at
1641+
select
1642+
'
1643+
'
1644+
focusin
1645+
on
1646+
select
1647+
at
1648+
wrapper
1649+
'
1650+
'
1651+
pointerup
1652+
on
1653+
option1
1654+
at
1655+
select
1656+
'
1657+
'
1658+
pointerup
1659+
on
1660+
option1
1661+
at
1662+
wrapper
1663+
'
1664+
'
1665+
mouseup
1666+
on
1667+
option1
1668+
at
1669+
select
1670+
'
1671+
'
1672+
mouseup
1673+
on
1674+
option1
1675+
at
1676+
wrapper
1677+
'
1678+
'
16231679
click
16241680
on
16251681
option1
@@ -1718,72 +1774,72 @@
17181774
wrapper
17191775
'
17201776
'
1721-
click
1777+
pointerup
17221778
on
17231779
option1
17241780
at
17251781
select
17261782
'
17271783
'
1728-
click
1784+
pointerup
17291785
on
17301786
option1
17311787
at
17321788
wrapper
17331789
'
17341790
'
1735-
input
1791+
mouseup
17361792
on
1737-
select
1793+
option1
17381794
at
17391795
select
17401796
'
17411797
'
1742-
input
1798+
mouseup
17431799
on
1744-
select
1800+
option1
17451801
at
17461802
wrapper
17471803
'
17481804
'
1749-
change
1805+
input
17501806
on
17511807
select
17521808
at
17531809
select
17541810
'
17551811
'
1756-
change
1812+
input
17571813
on
17581814
select
17591815
at
17601816
wrapper
17611817
'
17621818
'
1763-
focusout
1819+
change
17641820
on
1765-
option2
1821+
select
17661822
at
17671823
select
17681824
'
17691825
'
1770-
focusout
1826+
change
17711827
on
1772-
option2
1828+
select
17731829
at
17741830
wrapper
17751831
'
17761832
'
1777-
focusin
1833+
click
17781834
on
1779-
select
1835+
option1
17801836
at
17811837
select
17821838
'
17831839
'
1784-
focusin
1840+
click
17851841
on
1786-
select
1842+
option1
17871843
at
17881844
wrapper
17891845
'

0 commit comments

Comments
 (0)
Please sign in to comment.