Commit Graph

858673 Commits

Author SHA1 Message Date
Cristina Horotan
3d0b07f5a3 Backed out changeset 5873383c36e2 (bug 1856545) for causing talos max run time exceeded failures. CLOSED TREE 2023-10-06 04:07:39 +03:00
Emilio Cobos Álvarez
ad64ab4526 Bug 1854446 - Update some pre-existing valgrind suppressions. CLOSED TREE 2023-10-06 02:33:06 +03:00
Sebastian Hengst
2c4e33261b Bug 1856996 - set font-relative-units.html as passing on Windows x86 opt. CLOSED TREE
Incorrect test expectation had been added by latest wpt sync.
2023-10-06 01:08:11 +02:00
moz-wptsync-bot
3a8ccd83e7 Bug 1856996 - [wpt-sync] Update web-platform-tests to 4cd570dc80fec7b17cad121e7ac866badf62df38, a=testonly
MANUAL PUSH: wpt sync bot

wpt-head: 4cd570dc80fec7b17cad121e7ac866badf62df38
wpt-type: landing
2023-10-04 16:35:59 +00:00
Nate Chapin
30d4fd1754 Bug 1856740 [wpt PR 42233] - Make navigation-api/navigate-event/ resilient to starting with extra NavigationHistoryEntries, a=testonly
Automatic update from web-platform-tests
Make navigation-api/navigate-event/ resilient to starting with extra NavigationHistoryEntries

When WPT are run in-browser or via wptrunner, there may be additional
session history entries when the test starts, so the tests shouldn't
assume that they start with navigation.entries().length == 1 or
navigation.currentEntry.index == 0.

This is a workaround for https://github.com/web-platform-tests/wpt/issues/33590.

Change-Id: I978d492d5d31d110716d6a1d84732aff792aca14
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4904223
Reviewed-by: Domenic Denicola <domenic@chromium.org>
Auto-Submit: Nate Chapin <japhet@chromium.org>
Commit-Queue: Nate Chapin <japhet@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204863}

--

wpt-commits: 4cd570dc80fec7b17cad121e7ac866badf62df38
wpt-pr: 42233
2023-10-04 16:35:33 +00:00
moz-wptsync-bot
56bb864d51 Bug 1856722 [wpt PR 42227] - Update wpt metadata, a=testonly
wpt-pr: 42227
wpt-type: metadata
2023-10-04 09:47:16 +00:00
Matt Reynolds
dcc06a3da7 Bug 1856722 [wpt PR 42227] - gamepad: Check that the DocumentLoader is not null, a=testonly
Automatic update from web-platform-tests
gamepad: Check that the DocumentLoader is not null

Gamepad timestamps are reported relative to the navigationStart
timestamp, accessed from the DocumentLoader's DocumentLoadTiming.
In some scenarios the document may have been detached before the
NavigatorGamepad is initialized, causing the DocumentLoader to be
nullptr.

This CL checks that the DocumentLoader is non-null, and uses the
current time in place of navigationStart if it is null.

Bug: 1483777
Change-Id: Ib3efcf3a612cd4c1c543218fa5fb8568c7129dcf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4899018
Reviewed-by: Alvin Ji <alvinji@chromium.org>
Commit-Queue: Matt Reynolds <mattreynolds@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204813}

--

wpt-commits: 3ae2cb8c5b5ba61809da15318821a6c1fe54829f
wpt-pr: 42227
2023-10-04 16:35:27 +00:00
moz-wptsync-bot
76fc98e0a0 Bug 1856706 [wpt PR 42083] - Update wpt metadata, a=testonly
wpt-pr: 42083
wpt-type: metadata
2023-10-04 09:45:16 +00:00
Mason Freed
db8f6e1e1d Bug 1856706 [wpt PR 42083] - Optimize several things about DOM Parts [1/2], a=testonly
Automatic update from web-platform-tests
Optimize several things about DOM Parts [1/2]

See [1] for details. This CL makes these changes:
- Stop maintaining “live” parts lists across DOM mutations. This is
  controlled by a new feature flag, DOMPartsAPIActivePartTracking,
  that when disabled, short-circuits all of the part list maintenance
  code during DOM mutations. This means that if DOM nodes that are
  connected to parts are moved around in the DOM, including being
  removed from the document, the cached parts list does not change.
- Update ToV8HelperSequence to work directly with Deques, and get
  rid of getParts() code to convert to a HeapVector.
- Optimize ToV8HelperSequence to use iterators instead of array
  indexing, which should also speed up all sequence bindings. (TBD)
- Change from FrozenArray<Part> to sequence<Part>. This eliminated
  the overhead of Object::SetIntegrityLevel(), which was ~29% of the
  total getParts() time.
- Add a fast path for PartRoot.replaceChildren when all children
  are being removed.
- Inline IsValid().
- Call InsertBefore() instead of before() to avoid some extra
  validity checks. This required making ConvertNodeUnionsIntoNode
  public.
- Add PartRoot.getPartNode(n), which allows direct access to a
  single Part's Node, to avoid wrapping up the entire parts list.

[1] https://docs.google.com/document/d/1wSbBV6tS-KLlHWxaK_FmEJFOwkY-pb8_YDoFJgDrbMg/edit

Bug: 1453291
Change-Id: I3df15b2a552fe9c2793a7f7f2095d632bcea8326
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4878048
Reviewed-by: Joey Arhar <jarhar@chromium.org>
Commit-Queue: Mason Freed <masonf@chromium.org>
Auto-Submit: Mason Freed <masonf@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204772}

--

wpt-commits: 27ccadd96797aec13652caaeaab3a428c06ab2d3
wpt-pr: 42083
2023-10-04 16:35:21 +00:00
moz-wptsync-bot
4acc6d7e6e Bug 1856032 [wpt PR 42252] - Update wpt metadata, a=testonly
wpt-pr: 42252
wpt-type: metadata
2023-10-03 20:43:50 +00:00
Ian Clelland
5790b685fe Bug 1856032 [wpt PR 42252] - Parse and use different reporting endpoints per feature in permissions policy, a=testonly
Automatic update from web-platform-tests
Parse and use different reporting endpoints per feature in permissions policy

Change-Id: I1cc8a1ea185500d44ddb2718803c22f2038f66c6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4473627
Reviewed-by: Kouhei Ueno <kouhei@chromium.org>
Commit-Queue: Ian Clelland <iclelland@chromium.org>
Reviewed-by: Ken Buchanan <kenrb@chromium.org>
Reviewed-by: Ari Chivukula <arichiv@chromium.org>
Reviewed-by: Adam Rice <ricea@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204761}

--

wpt-commits: 592f7b1cf7c9fb40c514940950ae2120339d4251
wpt-pr: 42252
2023-10-04 16:35:15 +00:00
Matt Menke
de8ae46313 Bug 1856643 [wpt PR 42312] - [FLEDGE]: Subdivide WPT tests., a=testonly
Automatic update from web-platform-tests
[FLEDGE]:  Subdivide WPT tests.

FLEDGE tests tend to be fairly slow, since they can spawn a bunch of
processes. This CL subdivides most FLEDGE WPT tests into sets of 5
(one larger file into sets of 10), which should hopefully reduce flake
on the bots.

Fixed: 1481290
Change-Id: If708b33d0713e783cc53f014d9fbfe127ec1dc9d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4909551
Reviewed-by: Maks Orlovich <morlovich@chromium.org>
Commit-Queue: Matt Menke <mmenke@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204664}

--

wpt-commits: f6d8468144f5f9f8fe2e6b8ecdb1846ce08c3700
wpt-pr: 42312
2023-10-04 16:35:02 +00:00
moz-wptsync-bot
12f5cfcc31 Bug 1727518 [wpt PR 30173] - Update wpt metadata, a=testonly
wpt-pr: 30173
wpt-type: metadata
2023-10-04 09:36:48 +00:00
Harald Alvestrand
8128a9ed1d Bug 1727518 [wpt PR 30173] - Add test that "maintain-framerate" does what it says., a=testonly
Automatic update from web-platform-tests
Add test that "maintain-framerate" does what it says.

Adds a test that measures the bandwidth, cuts the bandwidth in half,
and then measures that framerate is maintained, but resolution is not.

Also adds more entropy to the "getNoiseStream()" video signal; the old
version generated a video stream of 8 Kbits/second in 640x480.

Bug: none
Change-Id: Iefe0a44b9686f1bb4bdd13ab63922c3d460c775e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3117645
Reviewed-by: Philipp Hancke <phancke@microsoft.com>
Commit-Queue: Harald Alvestrand <hta@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204584}

--

wpt-commits: 1af7ffeb926a3644c33bcbf7ab0a1bb6c2f0a824
wpt-pr: 30173
2023-10-04 16:34:57 +00:00
moz-wptsync-bot
15eb54d1cc Bug 1851451 [wpt PR 41799] - Update wpt metadata, a=testonly
wpt-pr: 41799
wpt-type: metadata
2023-10-04 09:34:54 +00:00
Daniil Sakhapov
4710e78342 Bug 1851451 [wpt PR 41799] - Fix WPT CSS Counters test, a=testonly
Automatic update from web-platform-tests
Fix WPT CSS Counters test

As per:
https://drafts.csswg.org/css-contain/#example-6932a400
and
https://github.com/w3c/csswg-drafts/issues/9116
counter() and counters() can cross the style containment boundary,
so the result should be 13 from the body's counter-reset.

Bug: 990657
Change-Id: Iee313a5ed6f487865b1b7c754aa45b736f6b8f15
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4836162
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Daniil Sakhapov <sakhapov@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204571}

--

wpt-commits: dcb79ca1856efaa5ac6b455d1f96f63e3038e663
wpt-pr: 41799
2023-10-04 16:34:51 +00:00
moz-wptsync-bot
53ea4eeb45 Bug 1856387 [wpt PR 42284] - Update wpt metadata, a=testonly
wpt-pr: 42284
wpt-type: metadata
2023-10-03 10:57:05 +00:00
Ms2ger
42ce1de70a Bug 1856387 [wpt PR 42284] - Update dependencies in HTML idlharness test, a=testonly
Automatic update from web-platform-tests
Update dependencies in HTML idlharness test

--

wpt-commits: 039581da9bf12f29ecd4a9915a04601def843278
wpt-pr: 42284
2023-10-04 16:34:33 +00:00
moz-wptsync-bot
13103c4edf Bug 1856543 [wpt PR 42050] - Update wpt metadata, a=testonly
wpt-pr: 42050
wpt-type: metadata
2023-10-04 09:32:30 +00:00
Seokho Song
6a25116aa5 Bug 1856543 [wpt PR 42050] - Ignore complex relative expression in css atan2(), a=testonly
Automatic update from web-platform-tests
Ignore complex relative expression in css atan2()

Currently, we use the double values if the parameter is relative type.
However, if the parameter is an expression that includes the relative
value it cannot be resolved as a simple double value.
It causes a crash because trying to use the value that is not
resolved.

Therefore, parsing a failure if ResolvedUnitType() function returns
kUnknown which means complex relative expression at the parsing time
until supporting "Involving relative values in Non-Length CSS Math
Expressions" [1]

[1] https://crbug.com/1436612

Bug: 1476829
Change-Id: If920388de96d2838eccf4d76fecb050e414d29dd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4835559
Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Seokho Song <seokho@chromium.org>
Reviewed-by: Xiaocheng Hu <xiaochengh@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204500}

--

wpt-commits: 78701298a872dc884f7bd341108d0a5ff8c41bf2
wpt-pr: 42050
2023-10-04 16:34:27 +00:00
moz-wptsync-bot
f1dd5cbe53 Bug 1856394 [wpt PR 42285] - Update wpt metadata, a=testonly
wpt-pr: 42285
wpt-type: metadata
2023-10-03 09:02:53 +00:00
youennf
326bef1991 Bug 1856394 [wpt PR 42285] - Update webcodecs decoder test as error callback is now executed before flush promise callbacks, a=testonly
Automatic update from web-platform-tests
Update webcodecs decoder test as error callback is now executed before flush promise callbacks (#42285)

--

wpt-commits: 68cfc233182799e3c4edc2e6d7c43b7f795c1a2f
wpt-pr: 42285
2023-10-04 16:34:21 +00:00
sideshowbarker
a5e457eb89 Bug 1856405 [wpt PR 42287] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=261621, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=261621 (#42287)

--

wpt-commits: 1807bc6a7f9a0362a9cc876867ddf65402521e93
wpt-pr: 42287
2023-10-04 16:34:18 +00:00
shaochenguang
e1c833b8b1 Bug 1856487 [wpt PR 42217] - Paint background invalidation when deleting the last element of TableRow, a=testonly
Automatic update from web-platform-tests
Paint background invalidation when deleting the last element of TableRow

When the last element in a TableRow is deleted, it does not trigger
a redraw of the background,causing the background to persist.
After removing the last element of a row in a Table,
the size of the TableRow remains unchanged because it does not affect
the layout of the preceding elements.
Therefore, caching is used during rendering.
We should proactively trigger a redraw of this row when deleting
the last element of a table row.

Bug: 1487554
Change-Id: Ia45f5abf8ccd54781e8f0c1de04aebfa5cad552c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4900123
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org>
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204290}

--

wpt-commits: 6447f83eae831c2470b4e8eb5cd6af6fbbe0103e
wpt-pr: 42217
2023-10-04 16:34:14 +00:00
Jian Li
2f051eb424 Bug 1856459 [wpt PR 42294] - Revert "[fetch-later] Force sending when BackgroundSync permission is off", a=testonly
Automatic update from web-platform-tests
Revert "[fetch-later] Force sending when BackgroundSync permission is off"

This reverts commit d32dc3635147aa9cb4638864865aa6f86f42f2f2.

Reason for revert:
Caused consistent failures for virtual/fetch-later/wpt_internal/fetch/fetch-later/send-on-deactivate-with-background-sync.tentative.https.window.html

https://ci.chromium.org/ui/p/chromium/builders/ci/Mac10.15%20Tests/42380/overview

Original change's description:
> [fetch-later] Force sending when BackgroundSync permission is off
>
> The [privacy decision][1] suggests: after user navigates away from
> a page, any pending requests left in the page should not be sent
> if [BackgroundSync permission][2] is off (default is on in Chrome).
>
> This CL forces sending out deferred requests on entering
> BackForwardCache if the page's BackgroundSync permission is off.
>
> [1]: https://github.com/WICG/pending-beacon/issues/3#issuecomment-1286397825
> [2]: https://wicg.github.io/background-sync/spec/
>
> Bug: 1465781
> Change-Id: I120fbbc13294c40fcf13162d5d786f97e2131367
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4845750
> Reviewed-by: Nidhi Jaju <nidhijaju@chromium.org>
> Auto-Submit: Ming-Ying Chung <mych@chromium.org>
> Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org>
> Reviewed-by: Adam Rice <ricea@chromium.org>
> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#1204080}

Bug: 1465781
Change-Id: I09e342e97d52745610d751eb21ee694ccf24976c
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4908141
Reviewed-by: Cammie Smith Barnes <cammie@chromium.org>
Owners-Override: Cammie Smith Barnes <cammie@chromium.org>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Commit-Queue: Cammie Smith Barnes <cammie@chromium.org>
Auto-Submit: Jian Li <jianli@chromium.org>
Commit-Queue: Jian Li <jianli@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204260}

--

wpt-commits: 34e3a8a6cd3df89182ceea8c7b6e34a2b41c57d2
wpt-pr: 42294
2023-10-04 16:34:04 +00:00
Christian Biesinger
c0e304414d Bug 1856053 [wpt PR 42257] - [FedCM] Rename signin_url to login_url in the config file, a=testonly
Automatic update from web-platform-tests
[FedCM] Rename signin_url to login_url in the config file

For now, we also accept the old name for compatibility with existing
partner deployments, but we will remove this before shipping.

See updated spec PR:
https://github.com/fedidcg/FedCM/pull/436/files

R=npm@chromium.org

Bug: 1487726
Change-Id: If8e8a00c51bd7665fbdff9950315ec17d2054716
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4905870
Reviewed-by: Nasko Oskov <nasko@chromium.org>
Reviewed-by: Nicolás Peña <npm@chromium.org>
Auto-Submit: Christian Biesinger <cbiesinger@chromium.org>
Commit-Queue: Nasko Oskov <nasko@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204212}

--

wpt-commits: 904e94814db7a120917258b2f2dbea19b2e02b2c
wpt-pr: 42257
2023-10-04 16:34:00 +00:00
moz-wptsync-bot
881739bea3 Bug 1856070 [wpt PR 42260] - Update wpt metadata, a=testonly
wpt-pr: 42260
wpt-type: metadata
2023-10-02 20:14:04 +00:00
Vladimir Levin
d450808cb1 Bug 1856070 [wpt PR 42260] - VT: Scale the inline boxes by dfs, a=testonly
Automatic update from web-platform-tests
VT: Scale the inline boxes by dfs

When not using resize observer, we get the sizes in layout space.
We need to adjust to get to CSS space.

R=bokan@chromium.org, khushalsagar@chromium.org

Fixed: 1487948
Change-Id: Icddb7a53d169412e59c63db55a5f6d5ff825930e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4902698
Reviewed-by: Khushal Sagar <khushalsagar@chromium.org>
Reviewed-by: David Bokan <bokan@chromium.org>
Commit-Queue: Vladimir Levin <vmpstr@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204179}

--

wpt-commits: 1a55dfeb09c159e4716d26ab671d5974b1646b7d
wpt-pr: 42260
2023-10-04 16:33:54 +00:00
moz-wptsync-bot
d4e8d65878 Bug 1856448 [wpt PR 42224] - Update wpt metadata, a=testonly
wpt-pr: 42224
wpt-type: metadata
2023-10-02 19:32:39 +00:00
Camillia Smith Barnes
ecf4f1c715 Bug 1856448 [wpt PR 42224] - Shared Storage: Change from per-origin to per-site budgets, a=testonly
Automatic update from web-platform-tests
Shared Storage: Change from per-origin to per-site budgets

We update to using per-site privacy budgets instead of per-origin
privacy budgets. This will align with enrollment enforcement, which is
per-site.

See also https://github.com/WICG/shared-storage/pull/112 and
https://github.com/WICG/shared-storage/pull/118.

To accomplish this, we migrate the `SharedStorageDatabase` to version
4, where the `budget_mapping` table's `context_origin` column has been
renamed to `context_site`, and any existing data for version 3
databases will have each serialized origin in that column replaced by
the corresponding serialization of the origin's site.

We also update the names and types of other members and parameters as
needed.

Bug: 1218540,1485598
Change-Id: I3d956f5f2cd54a5da76a20e7d63411b3b7fc51ef
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4879582
Reviewed-by: Philip Rogers <pdr@chromium.org>
Commit-Queue: Cammie Smith Barnes <cammie@chromium.org>
Reviewed-by: Ayu Ishii <ayui@chromium.org>
Reviewed-by: Garrett Tanzer <gtanzer@chromium.org>
Reviewed-by: Avi Drissman <avi@chromium.org>
Reviewed-by: danakj <danakj@chromium.org>
Reviewed-by: Yao Xiao <yaoxia@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1204170}

--

wpt-commits: 25ddb07c3be61b730b94a7ff1bc17f5a4c7c1be2
wpt-pr: 42224
2023-10-04 16:33:47 +00:00
Natalia Csoregi
9c019316f7 Backed out 28 changesets (bug 1856070, bug 1856722, bug 1856543, bug 1856053, bug 1727518, bug 1856996, bug 1856387, bug 1856032, bug 1856459, bug 1856448, bug 1856740, bug 1856394, bug 1851451, bug 1856643, bug 1856706, bug 1856487, bug 1856405) for causing font-relative-units permafailures. CLOSED TREE
Backed out changeset 8738f51f60e5 (bug 1856996)
Backed out changeset 071a248f1589 (bug 1856996)
Backed out changeset 0ffb634e43b9 (bug 1856740)
Backed out changeset c69d0eea70e8 (bug 1856722)
Backed out changeset cac8106701fe (bug 1856722)
Backed out changeset c42ec0043832 (bug 1856706)
Backed out changeset 400f295c93eb (bug 1856706)
Backed out changeset 40096e9bbee3 (bug 1856032)
Backed out changeset d2915272bdb4 (bug 1856032)
Backed out changeset 62f1cada665e (bug 1856643)
Backed out changeset 35e538fbc3b3 (bug 1727518)
Backed out changeset f751d509179c (bug 1727518)
Backed out changeset c762b03e4490 (bug 1851451)
Backed out changeset 2a2fdf731696 (bug 1851451)
Backed out changeset a1618e4080d3 (bug 1856387)
Backed out changeset 3fdee5bfe7b6 (bug 1856387)
Backed out changeset ced54e8b3935 (bug 1856543)
Backed out changeset 65ef393a65ed (bug 1856543)
Backed out changeset fcbf54572c65 (bug 1856394)
Backed out changeset a87eaf3f395e (bug 1856394)
Backed out changeset 5fc043db0e5b (bug 1856405)
Backed out changeset 4529ae5e3a5e (bug 1856487)
Backed out changeset f1829ff5122c (bug 1856459)
Backed out changeset ef8334a07b35 (bug 1856053)
Backed out changeset 26c98ca6be5c (bug 1856070)
Backed out changeset d03415a1653c (bug 1856070)
Backed out changeset 49c1286243c1 (bug 1856448)
Backed out changeset 4cf5d5161ed3 (bug 1856448)
2023-10-06 02:14:49 +03:00
Natalia Csoregi
b58dadb609 Backed out changeset 62f7af8fe549 (bug 1843981) for causing valgrind bustage. CLOSED TREE 2023-10-06 01:24:17 +03:00
Cristina Horotan
b6e35dc0f0 Backed out changeset 029a69533eb9 (bug 1841432) for causing wpt perma failures at resource-selection-source-media-env-change.html CLOSED TREE 2023-10-06 00:49:47 +03:00
Natalia Csoregi
ddf1824cda Backed out 3 changesets (bug 1851041) for causing bustage on nsClipboard.cpp. CLOSED TREE
Backed out changeset 5cb270a4e6b6 (bug 1851041)
Backed out changeset f6e5e427d8e8 (bug 1851041)
Backed out changeset 7c7228999e18 (bug 1851041)
2023-10-05 23:59:45 +03:00
Katherine Patenio
97a364c186 Bug 1856531 - Update report product back in stock button string r=shopping-reviewers,fluent-reviewers,flod,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D189988
2023-10-05 20:44:55 +00:00
Jonathan Kew
ce25ef7bf2 Bug 1857076 - Add an InspectorUtils API to get the number of lines in a block after reflow. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D190210
2023-10-05 20:37:54 +00:00
Nicolas Silva
faf195158d Bug 1857243 - Update wgpu to revision 1495e159faf721cbf87a0634157682f454a963fb. r=webgpu-reviewers,supply-chain-reviewers,ErichDonGubler
Differential Revision: https://phabricator.services.mozilla.com/D190208
2023-10-05 20:22:27 +00:00
Mike Hommey
c04c99325f Bug 1839739 - Default to lld in more cases on Linux. r=firefox-build-system-reviewers,geckoview-reviewers,releng-reviewers,andi,gbrown,m_kato
Differential Revision: https://phabricator.services.mozilla.com/D188676
2023-10-05 20:11:07 +00:00
Mike Hommey
a9dae07225 Bug 1843981 - Update builders to rustc 1.73. r=firefox-build-system-reviewers,sergesanspaille
Differential Revision: https://phabricator.services.mozilla.com/D190009
2023-10-05 20:02:16 +00:00
Gijs Kruitbosch
124c0f0e4c Bug 1856619 - drop optedOut from conditions that toggle _enabled so shopping button keeps updating on tabswitch/navigation, r=jhirsch
Differential Revision: https://phabricator.services.mozilla.com/D190212
2023-10-05 19:58:53 +00:00
Kershaw Chang
f40f7742bd Bug 1857153 - Only create qlog folder in parent process, r=necko-reviewers,valentin
Differential Revision: https://phabricator.services.mozilla.com/D190149
2023-10-05 19:48:31 +00:00
Kershaw Chang
c5999e857d Bug 1857153 - Add steps for enabling QLOG, r=necko-reviewers,valentin DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D190147
2023-10-05 19:47:44 +00:00
Tom Ritter
77e925dc67 Bug 1856347: Allow copy_contents to take an optional parameter ignore_dangling_symlinks r=gbrown
Differential Revision: https://phabricator.services.mozilla.com/D189855
2023-10-05 19:45:24 +00:00
jneuberger
ae2fbf70fd Bug 1789194 - Skip test_basic_autocomplete_form.html only for apple_catalina and opt - r=credential-management-reviewers,sgalich
Intermittent failures only appeared for macos1015 (catalina), so this re-enables the test for all other macos versions.

Differential Revision: https://phabricator.services.mozilla.com/D190209
2023-10-05 19:41:23 +00:00
Katherine Patenio
081d72daa3 Bug 1851246 - add Storybook entries for shopping-container r=shopping-reviewers,reusable-components-reviewers,hjones,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D189174
2023-10-05 19:02:15 +00:00
Sean Feng
2714359424 Bug 1852870 - Make devtools stop decompress decompressed content r=farre,ochameau,necko-reviewers,devtools-reviewers,valentin
Differential Revision: https://phabricator.services.mozilla.com/D188499
2023-10-05 18:51:26 +00:00
Joel Maher
142bb02761 Bug 1856272 - Adjust chunking for osx debug browser-chrome. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D190036
2023-10-05 18:50:40 +00:00
Edgar Chen
ec8c856b61 Bug 1851041 - Part 3: Ignore CFSTR_FILEDESCRIPTOR* if text/x-moz-url is present; r=rkraesig,win-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D189626
2023-10-05 18:46:14 +00:00
Edgar Chen
7f743bf0b6 Bug 1851041 - Part 2: Add some log in DragService for debugging; r=rkraesig,win-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D189625
2023-10-05 18:46:13 +00:00
Edgar Chen
a27d7de00d Bug 1851041 - Part 1: Clean up nsDragService::IsDataFlavorSupported; r=win-reviewers,gstoll
This doesn't change the behavior, it's just to improve the readability
by reducing the if-else block.

Differential Revision: https://phabricator.services.mozilla.com/D189624
2023-10-05 18:46:13 +00:00