Commit Graph

873454 Commits

Author SHA1 Message Date
Ryan VanderMeulen
d2f6d19529 Bug 1822171 - Update Android bundletool and commandlinetools to the latest releases. r=geckoview-reviewers,m_kato
Differential Revision: https://phabricator.services.mozilla.com/D202073
2024-02-19 16:09:51 +00:00
Sebastian Hengst
97feebcab2 Bug 1879673 - disable screenshot test browser_iframe_test.js on Linux for frequent failures
This is a regression from the changes in bug 1791086.

Differential Revision: https://phabricator.services.mozilla.com/D202159
2024-02-19 16:06:12 +00:00
ffxbld
60139c5b63 No Bug, mozilla-central repo-update HSTS HPKP remote-settings - r=release-managers,pascalc
Differential Revision: https://phabricator.services.mozilla.com/D202138
2024-02-19 15:46:15 +00:00
Jon Coppeard
4f5ae54919 Bug 1875304 - Enable parallel marking on workers r=sfink
This adds a per-process count of helper threads 'reserved' for parallel
marking. This means reserved with respect to parallel marking but not anything
else, so helper threads can still be used for other tasks (including GC
parallel tasks) but the number of runtimes that can mark in parallel is
limited.

The main runtime reserves threads when parallel marking is enabled to
priviledge it over worker runtimes. Workers reserve threads only for the
duration of collection. Failure to reserve threads means parallel marking is
not used.

I don't love the term 'reserved' beacuse it implies the threads cannot be used
for anything else, but I couldn't think of anything better. I've added comments
to describe what it actually means.

Differential Revision: https://phabricator.services.mozilla.com/D201695
2024-02-19 15:45:02 +00:00
Frédéric Wang
b7757cf5b4 Bug 1880433 - Change internal priority of fetchpriority=auto to match when network.fetchpriority is disabled. r=valentin,necko-reviewers
This patch modifies defaults of `network.fetchpriority.adjustments.*`
preferences so that internal priority of `fetchpriority=auto` to matches
when `network.fetchpriority` is disabled (i.e. adjustment is 0) and
the extra minimal changes to ensure the order of internal priority values
for high, auto and low is unchanged. That way the current default
behavior for fetchpriority unspecified/auto won't change when we enable
the flag. We may decide to depart from that in the future though.

Differential Revision: https://phabricator.services.mozilla.com/D202065
2024-02-19 15:35:47 +00:00
Jon Coppeard
1c7b6dd18e Bug 1880444 - Clear next pointer when detaching a section of linked list in SortedArenaList::restoreFromArenaList r=sfink
Essentially this an over-eager assertion, but it's nice to have the assertion
in the SinglyLinkedList constructor. We can just clear the next pointer before
passing the last node in.

Differential Revision: https://phabricator.services.mozilla.com/D201991
2024-02-19 15:30:13 +00:00
Jon Coppeard
2cc9d2b806 Bug 1880464 - Ensure that all modules have a filename r=arai
Differential Revision: https://phabricator.services.mozilla.com/D201961
2024-02-19 15:20:58 +00:00
Tooru Fujisawa
7533056300 Bug 1880708 - Handle CC unlink when destroying ScriptLoader/ModuleLoader. r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D202080
2024-02-19 15:09:00 +00:00
Kershaw Chang
3bf0a840e4 Bug 1880110 - Bump the minimum version of Rust to 1.74.0, r=firefox-build-system-reviewers,ahochheiden
Differential Revision: https://phabricator.services.mozilla.com/D201947
2024-02-19 14:33:05 +00:00
Kershaw Chang
40b10e1554 Bug 1880110 - neqo 0.7.1, r=necko-reviewers,supply-chain-reviewers,jesup
Differential Revision: https://phabricator.services.mozilla.com/D201728
2024-02-19 14:33:04 +00:00
Sebastian Hengst
765c291c37 Bug 1815586 - set scrollend-event-fired-to-window.html to also time out on Windows CCov DONTBUILD
Other Windows platforms had been set as timing out in bug 1878313 on Feb 09.

Differential Revision: https://phabricator.services.mozilla.com/D202150
2024-02-19 14:25:37 +00:00
Julian Descottes
d8500108c3 Bug 1879502 - [wdspec] Add more tests for cached network requests r=webdriver-reviewers,Sasha
This changeset adds tests for cached resources which will hit the http cache.
It also adds a basic test for cached requests for the beforeRequestSent event, which was missing.

Differential Revision: https://phabricator.services.mozilla.com/D201203
2024-02-19 13:38:10 +00:00
Frédéric Wang
8b95523cd9 Bug 1880528 - Introduce preference for fetch priority adjustment of style load. r=valentin,necko-reviewers
This introduces preferences loading style. See D201997 for the
rationale, test coverage and why there is no behavior change.

Note that current behavior for deferred style is to always set
PRIORITY_LOW, so the fetchpriority attribute has no effect.

Some preference names could be more verbose to match the if
branches in `Loader::AdjustPriority` but note that it is not
clear whether "deferred preload style" can actually happen,
see bug 1879335.

Differential Revision: https://phabricator.services.mozilla.com/D202052
2024-02-19 13:35:40 +00:00
Frédéric Wang
ede734680b Bug 1880528 - Introduce preference for fetch priority adjustment of <link rel=preload as=font/fetch>. r=valentin,necko-reviewers
This introduces preferences <link rel=preload as=font/fetch>.
See D201997 for the rationale, test coverage and why there is no
behavior change.

Differential Revision: https://phabricator.services.mozilla.com/D202047
2024-02-19 13:35:40 +00:00
Frédéric Wang
4b0b8b1ca2 Bug 1880528 - Introduce preference for fetch priority adjustment of scripts. r=valentin,necko-reviewers
This introduces preferences for non-link scripts. See D201997 for the
rationale, test coverage and why there is no behavior change.

Differential Revision: https://phabricator.services.mozilla.com/D202046
2024-02-19 13:35:39 +00:00
Frédéric Wang
a4d4b33917 Bug 1880528 - Introduce preference for fetch priority adjustment of <link rel=preload as=script>. r=valentin,necko-reviewers
The fetchpriority attribute allows web developers to request some
adjustment to the internal priorities when fetching resources. In order
to give some flexibility for experimenting and choosing the values that
work best for Gecko, we will introduce new preferences to control
exactly how the internal priority is adjusted, depending on the value
auto/high/low of the fetchpriority attribute.

This is the first patch of a series introducing such preferences,
focusing on the case `<link rel=preload as=script>`. The following 3
integer preferences are introduced:

```
network.fetchpriority.adjustments.link-preload-script.low
network.fetchpriority.adjustments.link-preload-script.high
network.fetchpriority.adjustments.link-preload-script.auto
```

and are set so that we don't change current behavior (already
covered by tests). A test is also added to verify basic invariants
for such adjustments.

Differential Revision: https://phabricator.services.mozilla.com/D201997
2024-02-19 13:35:39 +00:00
Norisz Fay
d40ce6e7b6 Backed out changeset 9e33a77369d3 (bug 1864340) for causing bc failures on browser_creditCard_telemetry.js CLOSED TREE 2024-02-19 16:23:37 +02:00
Norisz Fay
29c16880c4 Backed out changeset 4a8917760552 (bug 1865380) for causing getClientRects related failures 2024-02-19 15:57:07 +02:00
Emilio Cobos Álvarez
d2ab84bf66 Bug 1880749 - Simplify arrowpanel animation code. r=Gijs
Move it out of the UA sheet into popup.css, and share most of the code
between macOS and non-macOS.

Also, don't duplicate it for the bookmarks popup. Instead just add an
animatable-menupopup class for it.

Differential Revision: https://phabricator.services.mozilla.com/D202108
2024-02-19 13:15:40 +00:00
Jan-Niklas Jaeschke
ed78625460 Bug 1879441: Added null check for selections in nsINode::IsSelected(). r=smaug
Selections are stored here as WeakPtr to save refcount overhead, which means that a selection can be null.

Differential Revision: https://phabricator.services.mozilla.com/D202143
2024-02-19 12:53:31 +00:00
calixte
f3c76e868b Bug 1865380 - Take into account the text nodes in a selection range when calling getClientRects r=emilio
Some text nodes can be selected whatever their ancestors bounding box are
so they must be taken into account when calling Range.getClientRects.

Differential Revision: https://phabricator.services.mozilla.com/D195484
2024-02-19 12:37:38 +00:00
Jonathan Kew
3623d02b2f Bug 1879825 - Make Family::FindIndex fallible and safely handle failures. r=gfx-reviewers,lsalzman
Differential Revision: https://phabricator.services.mozilla.com/D201819
2024-02-19 12:37:33 +00:00
Updatebot
3701c3b0b8 Bug 1875573 - Update aom to 11631186b36e96afce18808ebebb17cc23a010ef r=padenot
Differential Revision: https://phabricator.services.mozilla.com/D199155
2024-02-19 12:24:19 +00:00
Luca Greco
f6bc257005 Bug 1880541 - Add to test_system_update_enterprisepolicy.js an explicit assertion on the active policies data. r=willdurand
Differential Revision: https://phabricator.services.mozilla.com/D202003
2024-02-19 11:59:50 +00:00
Kagami Sascha Rosylight
59278b1c56 Bug 1879444 - Make SafeRefPtr move assignment work as RefPtr does r=smaug,dom-storage-reviewers,asuth
Differential Revision: https://phabricator.services.mozilla.com/D201598
2024-02-19 11:33:13 +00:00
moz-wptsync-bot
5c69e2b099 Bug 1880515 - [wpt-sync] Update web-platform-tests to c5e5bdbb039179218cb4409651801a7884393d50, a=testonly
MANUAL PUSH: wpt sync bot

wpt-head: c5e5bdbb039179218cb4409651801a7884393d50
wpt-type: landing
2024-02-19 11:14:08 +00:00
Ahmad Saleem
79bbdd1508 Bug 1879628 [wpt PR 44511] - Apply SVG paint-order to text-decorations, a=testonly
Automatic update from web-platform-tests
Apply SVG paint-order to text-decorations (#44511)

--

wpt-commits: 57308edfae0901589d855ef1ca7ee2b7cf1f4498
wpt-pr: 44511
2024-02-19 11:14:07 +00:00
moz-wptsync-bot
27f6f09b19 Bug 1877968 [wpt PR 44350] - Update wpt metadata, a=testonly
wpt-pr: 44350
wpt-type: metadata
2024-02-19 11:14:07 +00:00
Luke Warlow
a543cd30c0 Bug 1877968 [wpt PR 44350] - Mark fromLiteral test as tentative, a=testonly
Automatic update from web-platform-tests
Mark fromLiteral test as tentative (#44350)

--

wpt-commits: 23804825f5d2ef423396e1bc7b4c076667b0e21d
wpt-pr: 44350
2024-02-19 11:14:06 +00:00
Juha Vainio
9c7b20574a Bug 1880232 [wpt PR 44577] - Add rounding test to orientation-event WPT, a=testonly
Automatic update from web-platform-tests
Add rounding test to orientation-event WPT

https://crrev.com/c/5249795 converted orientation-event web tests to
use WebDriver and virtual sensors. Virtual sensors follow security and
privacy requirements defined in https://www.w3.org/TR/orientation-event/#security-and-privacy.
One of these requirements include limiting the precision of values.
Specification defines that all measurements are required to be
coarsened to 0.1 degrees, 0.1 m/s^2 or 0.1 deg/s.
This change tests that requirement to limit precision is met.

Bug: 1520919
Change-Id: I58b266dc602187e2e4c4d9a3a67f12ac91136e57
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5295494
Commit-Queue: Raphael Kubo Da Costa <raphael.kubo.da.costa@intel.com>
Reviewed-by: Reilly Grant <reillyg@chromium.org>
Auto-Submit: Juha J Vainio <juha.j.vainio@intel.com>
Reviewed-by: Raphael Kubo Da Costa <raphael.kubo.da.costa@intel.com>
Cr-Commit-Position: refs/heads/main@{#1260950}

--

wpt-commits: 5a60e4cdacf2bfa1dc3d22bf7a2ab975c30e3860
wpt-pr: 44577
2024-02-19 11:14:05 +00:00
moz-wptsync-bot
370186af5f Bug 1880290 [wpt PR 44587] - Update wpt metadata, a=testonly
wpt-pr: 44587
wpt-type: metadata
2024-02-19 11:14:04 +00:00
Alex Rudenko
b797d5f912 Bug 1880290 [wpt PR 44587] - Add a test covering order of navigation/fragment/network events, a=testonly
Automatic update from web-platform-tests
Add a test covering order of navigation/fragment/network events (#44587)

--

wpt-commits: b8c0ef39cf4671f75d4391c18ae0440734f2112b
wpt-pr: 44587
2024-02-19 11:14:03 +00:00
moz-wptsync-bot
39d6fdaa9e Bug 1880172 [wpt PR 44568] - Update wpt metadata, a=testonly
wpt-pr: 44568
wpt-type: metadata
2024-02-19 11:14:03 +00:00
Anne van Kesteren
9b360a565b Bug 1880172 [wpt PR 44568] - More declarative shadow tree test coverage, a=testonly
Automatic update from web-platform-tests
More declarative shadow tree test coverage

We only care about mode mismatching. And we should also test with multiple <template> elements that have the same mode, to avoid triggering the mode mismatch exception.

--

wpt-commits: 6318d09b67bd4978f9bd2a271d2da54d9db70334
wpt-pr: 44568
2024-02-19 11:14:02 +00:00
moz-wptsync-bot
c6f2ee37c9 Bug 1878416 [wpt PR 44386] - Update wpt metadata, a=testonly
wpt-pr: 44386
wpt-type: metadata
2024-02-19 11:14:01 +00:00
Mason Freed
030be76d49 Bug 1878416 [wpt PR 44386] - Add shadowRootDelegatesFocus and shadowRootClonable reflection, a=testonly
Automatic update from web-platform-tests
Add shadowRootDelegatesFocus and shadowRootClonable reflection

The `shadowRootDelegatesFocus` IDL is standardized [1], and was just
never added to Chromium. This CL lands this addition behind a kill
switch, but should be very safe to add.

The `shadowRootClonable` IDL is being added as part of [2], which
has support and should land soon.

[1] https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
[2] https://github.com/whatwg/html/pull/10117

Bug: 1510466
Change-Id: I708ec8d562fa4d0fc59c73a071dbb191e1bd276e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5261148
Commit-Queue: Mason Freed <masonf@chromium.org>
Reviewed-by: David Baron <dbaron@chromium.org>
Reviewed-by: Chris Harrelson <chrishtr@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260805}

--

wpt-commits: 07a8d151094595d22d2ddf9fc1bda30f6dfa2f1a
wpt-pr: 44386
2024-02-19 11:14:01 +00:00
moz-wptsync-bot
290519507a Bug 1880382 [wpt PR 44595] - Update wpt metadata, a=testonly
wpt-pr: 44595
wpt-type: metadata
2024-02-19 11:14:00 +00:00
Huanpo Lin
c829aa7762 Bug 1880382 [wpt PR 44595] - Revert "Add notifyEvent API for fenced frames.", a=testonly
Automatic update from web-platform-tests
Revert "Add notifyEvent API for fenced frames."

This reverts commit 62f8e1eb2e54597cacc165645e888c6b89229826.

Reason for revert:
virtual/fenced-frame-mparch/external/wpt/fenced-frame/notify-event-invalid.https.html is flaky across multiple platforms, and this CL
is shown within the suspected range.
https://ci.chromium.org/ui/p/chromium/builders/ci/Linux%20Tests/141362/overview
https://ci.chromium.org/ui/p/chromium/builders/ci/Win10%20Tests%20x64/88121/overview

Original change's description:
> Add notifyEvent API for fenced frames.
>
> This API allows DOM events that occur within a fenced frame
> to be observed by the frame's embedder in a privacy-respecting manner.
> When an eligible event type (currently, just click) occurs within
> the embedded document, window.fence.notifyEvent(e) can be called
> with the event object, which will create a censored version of
> the event to be handled by the embedder via addEventListener().
>
> This API is being implemented as part of the "fenced frames with
> local unpartitioned data access" proposal, see explainer here:
> https://github.com/WICG/fenced-frame/blob/master/explainer/fenced_frames_with_local_unpartitioned_data_access.md
>
> Design doc for this CL is here:
> https://docs.google.com/document/d/1EiysMPnARSx2pzI1hSeFlI7k2ETxs5ycZoV2Cy08PEk/edit?usp=sharing
>
> Bug: 1515579
> Change-Id: I7f155e5640e7b798ca33a48c6afdda9c039d45c0
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5166147
> Reviewed-by: Alex Moshchuk <alexmos@chromium.org>
> Commit-Queue: Andrew Verge <averge@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#1260541}

Bug: 1515579
Change-Id: I9c26e15b7edbf261d93c1017a91d797f3922d5dc
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5298514
Owners-Override: Robert Lin <robertlin@google.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Commit-Queue: Huanpo Lin <robertlin@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260787}

--

wpt-commits: 4bd0a190da9025203a34902958e52ded07b0f35f
wpt-pr: 44595
2024-02-19 11:13:59 +00:00
moz-wptsync-bot
8ea060d9ac Bug 1879974 [wpt PR 44552] - Update wpt metadata, a=testonly
wpt-pr: 44552
wpt-type: metadata
2024-02-19 11:13:58 +00:00
Blink WPT Bot
35ecde16a7 Bug 1879974 [wpt PR 44552] - Fenced frames: Disable popup navigations after network revocation, a=testonly
Automatic update from web-platform-tests
Fenced frames: Disable popup navigations after network revocation (#44552)

Navigations into and out of fenced frames need to be treated specially
for network revocation, because they don't have the revoked partition
nonce attached.

Previous CLs disabled embedder-initiated fenced frame root navigations
and _unfencedTop navigations; this CL disables popup navigations.

Bug: 1515599
Change-Id: Ia05e3fecb40240de1d32a3e736e42eba5f03f411
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5259509
Reviewed-by: Dominic Farolino <dom@chromium.org>
Reviewed-by: Alex Moshchuk <alexmos@chromium.org>
Commit-Queue: Garrett Tanzer <gtanzer@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260187}

Co-authored-by: Garrett Tanzer <gtanzer@chromium.org>
--

wpt-commits: bbf3512db886134f2541ff134f6c2f2b1a4f0c33
wpt-pr: 44552
2024-02-19 11:13:57 +00:00
moz-wptsync-bot
cdb17b3927 Bug 1878762 [wpt PR 44405] - Update wpt metadata, a=testonly
wpt-pr: 44405
wpt-type: metadata
2024-02-19 11:13:57 +00:00
David Awogbemila
02328f9dbd Bug 1878762 [wpt PR 44405] - [css-scroll-snap-2] Prioritize inner snap targets, a=testonly
Automatic update from web-platform-tests
[css-scroll-snap-2] Prioritize inner snap targets

Prefer nested snap targets, per step 5[1].

The change to scroll_snap_data_unittest.cc is to make the scroll's
ending position a little closer to outside small_2. Otherwise, either
snapping to the bottom of small_2 or out of it is a viable option.

[1] https://github.com/w3c/csswg-drafts/issues/9622#issue-2006578282

Bug: 323840828
Change-Id: Ic2c41e7a4b47a74e85581c8f3b5eb88a42719219
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5269646
Reviewed-by: Steve Kobes <skobes@chromium.org>
Commit-Queue: David Awogbemila <awogbemila@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260782}

--

wpt-commits: 4719225513d3ac5575b147324de4f366f60a92fe
wpt-pr: 44405
2024-02-19 11:13:56 +00:00
Chris Lilley
a5b025f3bf Bug 1877233 [wpt PR 44269] - Test parse-time HSL clamp of negative saturation to zero, a=testonly
Automatic update from web-platform-tests
Test parse-time HSL clamp of negative saturation to zero (#44269)

--

wpt-commits: 2736c7f78f9ce019496c047254351b7d869a5b94
wpt-pr: 44269
2024-02-19 11:13:55 +00:00
moz-wptsync-bot
264c3374a9 Bug 1879312 [wpt PR 44471] - Update wpt metadata, a=testonly
wpt-pr: 44471
wpt-type: metadata
2024-02-19 11:13:54 +00:00
Ari Chivukula
3218c6f5bc Bug 1879312 [wpt PR 44471] - [SAA] Implementing SharedWorker support (Part 4: Add SharedWorker support to SAA handle), a=testonly
Automatic update from web-platform-tests
[SAA] Implementing SharedWorker support (Part 4: Add SharedWorker support to SAA handle)

The Storage Access API provides access to unpartitioned cookies in
third-party contexts. This CL is part of a series to extend that access
to SharedWorkers.

This CL implements the final component, SharedWorker access via the SAA
handle itself. Prior CLs set up the proper cookie filtering we test here
to ensure no third-party context can access SameSite=Lax/Strict cookies
(even if they can access unpartitioned SameSite=None cookies).

Design Doc:
https://docs.google.com/document/d/19qCGb4qwOcGiNrQM3ptWvRmB4JtpaTFgFVlWLXNOQ6c/edit

Explainer:
https://privacycg.github.io/saa-non-cookie-storage/shared-workers.html

Part 1: Expose same-site cookie IPC
Part 2: Expose same-site cookie IDL
Part 3: Implement same-site cookie filtering
Part 4: Add SharedWorker support to SAA handle

Bug: 1484966
Change-Id: Ic23366a84176b6eb1c3ec5724fad07f2bffa9216
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5277592
Reviewed-by: Dominic Farolino <dom@chromium.org>
Commit-Queue: Dominic Farolino <dom@chromium.org>
Auto-Submit: Ari Chivukula <arichiv@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260592}

--

wpt-commits: 92cff38392fc67cf4dbb45e2d6853cd25223c610
wpt-pr: 44471
2024-02-19 11:13:53 +00:00
moz-wptsync-bot
74213765bc Bug 1872905 [wpt PR 43843] - Update wpt metadata, a=testonly
wpt-pr: 43843
wpt-type: metadata
2024-02-19 11:13:53 +00:00
Andrew Verge
31adcf6086 Bug 1872905 [wpt PR 43843] - Add notifyEvent API for fenced frames., a=testonly
Automatic update from web-platform-tests
Add notifyEvent API for fenced frames.

This API allows DOM events that occur within a fenced frame
to be observed by the frame's embedder in a privacy-respecting manner.
When an eligible event type (currently, just click) occurs within
the embedded document, window.fence.notifyEvent(e) can be called
with the event object, which will create a censored version of
the event to be handled by the embedder via addEventListener().

This API is being implemented as part of the "fenced frames with
local unpartitioned data access" proposal, see explainer here:
https://github.com/WICG/fenced-frame/blob/master/explainer/fenced_frames_with_local_unpartitioned_data_access.md

Design doc for this CL is here:
https://docs.google.com/document/d/1EiysMPnARSx2pzI1hSeFlI7k2ETxs5ycZoV2Cy08PEk/edit?usp=sharing

Bug: 1515579
Change-Id: I7f155e5640e7b798ca33a48c6afdda9c039d45c0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5166147
Reviewed-by: Alex Moshchuk <alexmos@chromium.org>
Commit-Queue: Andrew Verge <averge@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1260541}

--

wpt-commits: 4621ea8ee4d3cf323783c8e78a33f3ec77f314a3
wpt-pr: 43843
2024-02-19 11:13:52 +00:00
Raphael Kubo da Costa
0273073943 Bug 1880062 [wpt PR 44557] - orientation-event: Test DeviceOrientationEvent's absolute value on error, a=testonly
Automatic update from web-platform-tests
orientation-event: Test DeviceOrientationEvent's absolute value on error (#44557)

Test for https://github.com/w3c/deviceorientation/pull/139. When a reading
cannot be provided, `absolute` needs to be set accordingly depending on the
event type we are listening to.
--

wpt-commits: fb4cd8f597e9b40725a51222b4627cbd6d94c528
wpt-pr: 44557
2024-02-19 11:13:51 +00:00
moz-wptsync-bot
ef78b1d837 Bug 1880280 [wpt PR 44586] - Update wpt metadata, a=testonly
wpt-pr: 44586
wpt-type: metadata
2024-02-19 11:13:50 +00:00
Randolf Jung
52093ff30d Bug 1880280 [wpt PR 44586] - Fix fragment_navigated test, a=testonly
Automatic update from web-platform-tests
Fix fragment_navigated test

--

wpt-commits: f5cac385941da42024176a1763f3941e33bb7bb0
wpt-pr: 44586
2024-02-19 11:13:49 +00:00