Releases: web-platform-tests/wpt
merge_pr_50289
Support inline integrity checks on SVG script elements.
Bug: 391907163
Change-Id: I55e67d9256ccbc05b2ffc432bd9dc258762af919
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6198224
Reviewed-by: Fredrik Söderquist [email protected]
Commit-Queue: Mike West [email protected]
Cr-Commit-Position: refs/heads/main@{#1411395}
merge_pr_49989
Digital Credentials: Rename DigitalCredentialsRequest to DigitalCredentialRequest (#49989)
merge_pr_48253
Digital Credentials: s/providers/requests, s/request/data (#48253)
merge_pr_50287
Add test for interactivity:auto overriding inert attribute effect
The test currently fails because the inert attribute still makes
elements html inert.
Bug: 370065759
Change-Id: Id80e276e31294ce00d1db8a854927ea7441ad087
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6198342
Commit-Queue: Rune Lillesveen [email protected]
Reviewed-by: Mason Freed [email protected]
Cr-Commit-Position: refs/heads/main@{#1411319}
merge_pr_50284
DOM: Bring Observable iterable conversion inline with spec
This CL ensures that after Observable.from()
is called with an
iterable, if the resulting Observable fails to iterate when subscribed
to, all errors are plumbed to the subscriber.
This matches the spec PR in WICG/observable#160.
R=masonf
Bug: 363015168
Change-Id: I31a38d7f57ec7ab5b29388d908a6a58e0b3c1905
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6199726
Reviewed-by: Mason Freed [email protected]
Commit-Queue: Dominic Farolino [email protected]
Cr-Commit-Position: refs/heads/main@{#1411273}
merge_pr_50283
Add UpdateSelectionBehavior to Range::UpdateSelectionIfAddedToSelection
When a live range attached to a document is modified, this change is
upstreamed to the FrameSelection. New spec [1] says to only update
the composed live range (frame selection)'s start position if setStart
is called and only update end position if setEnd is called:
whatwg/dom#1342
This is the proposal (B) discussed here:
whatwg/dom#772 (comment)
To do this, we define enum UpdateSelectionIfAddedToSelection to have
three possible update selection behavior:
- kAll, set selection to have the same start and end as range.
--> Default case, when both setStart, setEnd are called. - kStartOnly, set selection to have the same start as range only.
--> When only setStart is called. - kEndOnly, set selection to have the same end as range only.
--> When only setEnd is called.
We add a WPT test for this new behavior, which only affects the output
of getComposedRanges() as it is the only API that accesses the frame
selection's endpoints directly.
Change-Id: I51ea53fe6156164ba3fbe38b14bc47ff502633b1
Bug: 40286116
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6188157
Reviewed-by: Siye Liu [email protected]
Commit-Queue: Di Zhang [email protected]
Cr-Commit-Position: refs/heads/main@{#1411209}
merge_pr_50266
Test
Differential Revision: https://phabricator.services.mozilla.com/D235147
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1942820
gecko-commit: 76ecd4fd31b3e0a9426a3436d24ff8c190a7624e
gecko-reviewers: necko-reviewers, kershaw
merge_pr_50279
Add UA rules for interactivity
dialog:modal and [inert] should set 'interactivity' to 'auto' and
'inert' respectively according to the spec.
Bug: 370065759
Change-Id: Id270eeb7f6672cdb43e6c69f2367a2aa5a68b79e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6197981
Reviewed-by: Robert Flack [email protected]
Commit-Queue: Rune Lillesveen [email protected]
Cr-Commit-Position: refs/heads/main@{#1411062}
merge_pr_50278
Update META.yml: add pkotwicz
merge_pr_50277
Fix crash getting keyframes of root font-size transition
This change fixes a bug where a transition on a root element would
cause a crash if GetKeyframes() was called via javascript. The crash
was caused by the parent style not being available in the style
resolver state. This change adds a new function that initializes the
parent style as the initial style, as was done to fix
crbug.com/40703845
Bug: 387447929
Change-Id: Iaaef09b4cf003751082d1c818e55f4b9f792ab5b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6142431
Reviewed-by: Kevin Ellis [email protected]
Commit-Queue: Claire Chambers [email protected]
Cr-Commit-Position: refs/heads/main@{#1411049}