Closed Bug 1824101 Opened 2 years ago Closed 2 years ago

[wpt-sync] Sync PR 39159 - [scroll-animations] Make <length-percentage> optional in animation-range

Categories

(Core :: CSS Transitions and Animations, task, P4)

task

Tracking

()

RESOLVED FIXED
114 Branch
Tracking Status
firefox114 --- fixed

People

(Reporter: wpt-sync, Unassigned)

References

()

Details

(Whiteboard: [wptsync downstream])

Sync web-platform-tests PR 39159 into mozilla-central (this bug is closed when the sync is complete).

PR: https://github.com/web-platform-tests/wpt/pull/39159
Details from upstream follow.

Anders Hartvoll Ruud <andruud@chromium.org> wrote:

[scroll-animations] Make <length-percentage> optional in animation-range

This CL makes the \<length-percentage> part of animation-range-*
properties optional, i.e. the following is now allowed:

animation-range-start: cover; // cover 0%
animation-range-end: cover; // cover 100%

Additionally, the shorthand gains a new form in which the end
part can be inferred from the start part:

animation-range: cover 42%; // cover 42% cover 100%

The old special form of the shorthand (only a single range name)
is still valid, since \<length-percentage> is now optional in general:

animation-range: cover; // cover 0% cover 100%

This CL adjusts existing tests as needed, but also adds new tests.
In particular, we were missing tests for "auto auto" contraction,
as well as tests for the computed value of the animation-range
shorthand.

Fixed: 1426501
Change-Id: I6a5e6a8818ab29a5a3653454c6d97c7bf47bb583
Reviewed-on: https://chromium-review.googlesource.com/4363018
WPT-Export-Revision: 85dcc21cb4a21794f6e40d77b6e35d43e48b6f16

Component: web-platform-tests → CSS Transitions and Animations
Product: Testing → Core

CI Results

Ran 9 Firefox configurations based on mozilla-central, and Firefox, Chrome, and Safari on GitHub CI

Total 7 tests and 21 subtests

Status Summary

Firefox

OK : 7
PASS: 45
FAIL: 179

Chrome

OK : 7
PASS: 188
FAIL: 36

Safari

OK : 7
PASS: 45
FAIL: 179

Links

Gecko CI (Treeherder)
GitHub PR Head
GitHub PR Base

Details

New Tests That Don't Pass

  • /css/css-animations/parsing/animation-range-end-computed.html [wpt.fyi]
    • Property animation-range-end value 'initial': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'auto': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'cover 0%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'cover 100%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'COVER 0%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'COVER 100%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'cover 120%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'cover 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'cover -42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'contain 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit calc(41% + 1%)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit-crossing 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit 1%, cover 2%, contain 0%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit 1%, cover 2%, contain 100%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'entry 42px': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'entry-crossing 42px': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'contain calc(10% + 10px)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'entry 1em': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'exit calc(1em + 10px)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-end value 'cover': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'contain': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'entry': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-end value 'exit': FAIL (Chrome: FAIL, Safari: FAIL)
  • /css/css-animations/parsing/animation-range-end-valid.html [wpt.fyi]
    • e.style['animation-range-end'] = "auto" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "cover 0%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "cover 100%" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-end'] = "cover 120%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "cover 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "cover -42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "contain 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "exit 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "exit 1%, cover 2%, contain 0%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "exit 1%, cover 2%, contain 100%" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-end'] = "exit-crossing 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "entry 42px" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "entry-crossing 42px" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "contain calc(10px + 10%)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "entry 1em" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "exit calc(1em + 10px)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "entry 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-end'] = "cover" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-end'] = "contain" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-end'] = "entry" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-end'] = "exit" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
  • /css/css-animations/parsing/animation-range-shorthand.html [wpt.fyi]
    • e.style['animation-range'] = "auto" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto auto" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "cover" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry-crossing" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit-crossing" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry, exit" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 0% entry 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry-crossing 0% entry-crossing 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit 0% exit 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit-crossing 0% exit-crossing 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "cover 0% cover 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain 0% contain 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry calc(10% - 10%) entry calc(50% + 50%)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "cover 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry-crossing 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit-crossing 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 50px exit 100px" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit calc(10% + 50px)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 50% exit 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "cover 50% entry 50%, contain 50% exit 50%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'auto': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'auto auto': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'cover': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'contain': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry-crossing': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit-crossing': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry, exit': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry 0% entry 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry-crossing 0% entry-crossing 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit 0% exit 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit-crossing 0% exit-crossing 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'cover 0% cover 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'contain 0% contain 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry calc(10% - 10%) entry calc(50% + 50%)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'cover 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'contain 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry-crossing 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit-crossing 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry 50px exit 100px': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'exit calc(10% + 50px)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry 50% exit 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'cover 50% entry 50%, contain 50% exit 50%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range value 'entry 10em exit 20em': FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto auto" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto auto" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto auto" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 100%" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 100%" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 100%" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 10%" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 10%" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "auto entry 10%" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "cover" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "cover" should set animation-range-start: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "cover" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "contain" should set animation-range-start: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "contain" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain 100% contain 0%" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain 100% contain 0%" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "contain 100% contain 0%" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 10% exit 20%" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 10% exit 20%" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 10% exit 20%" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry calc(10% + 10px) exit 20px" should set animation-range-end: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry calc(10% + 10px) exit 20px" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry calc(10% + 10px) exit 20px" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry, exit" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "entry, exit" should set animation-range-start: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "entry, exit" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "entry 0%, exit" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "entry 0%, exit" should set animation-range-start: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "entry 0%, exit" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit calc(10% + 50px)" should set animation-range-end: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range'] = "exit calc(10% + 50px)" should set animation-range-start: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range'] = "exit calc(10% + 50px)" should not set unrelated longhands: FAIL (Chrome: PASS, Safari: FAIL)
  • /css/css-animations/parsing/animation-range-start-computed.html [wpt.fyi]
    • Property animation-range-start value 'initial': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'auto': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'cover 0%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'cover 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'COVER 0%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'COVER 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'cover 120%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'cover 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'cover -42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'contain 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'exit 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'exit calc(41% + 1%)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'exit 1%, cover 2%, contain 0%': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'exit 1%, cover 2%, contain 100%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'exit-crossing 42%': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'entry 42px': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'entry-crossing 42px': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'contain calc(10% + 10px)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'entry 1em': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'exit calc(1em + 10px)': FAIL (Chrome: PASS, Safari: FAIL)
    • Property animation-range-start value 'cover': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'contain': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'entry': FAIL (Chrome: FAIL, Safari: FAIL)
    • Property animation-range-start value 'exit': FAIL (Chrome: FAIL, Safari: FAIL)
  • /css/css-animations/parsing/animation-range-start-valid.html [wpt.fyi]
    • e.style['animation-range-start'] = "auto" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "cover 0%" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-start'] = "cover 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "cover 120%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "cover 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "cover -42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "contain 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "exit 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "exit 1%, cover 2%, contain 0%" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-start'] = "exit 1%, cover 2%, contain 100%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "exit-crossing 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "entry 42px" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "entry-crossing 42px" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "contain calc(10px + 10%)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "entry 1em" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "exit calc(1em + 10px)" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "entry 42%" should set the property value: FAIL (Chrome: PASS, Safari: FAIL)
    • e.style['animation-range-start'] = "cover" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-start'] = "contain" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-start'] = "entry" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
    • e.style['animation-range-start'] = "exit" should set the property value: FAIL (Chrome: FAIL, Safari: FAIL)
Pushed by wptsync@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/58bb673f0f2c [wpt PR 39159] - [scroll-animations] Make <length-percentage> optional in animation-range, a=testonly https://hg.mozilla.org/integration/autoland/rev/1de374db0b21 [wpt PR 39159] - Update wpt metadata, a=testonly
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → FIXED
Target Milestone: --- → 114 Branch
You need to log in before you can comment on or make changes to this bug.