Commit Graph

940713 Commits

Author SHA1 Message Date
moz-wptsync-bot
c77e3bc6ca Bug 1931126 [wpt PR 49159] - Update wpt metadata, a=testonly
wpt-pr: 49159
wpt-type: metadata
2024-11-20 09:15:04 +00:00
Philip Chimento
a505691270 Bug 1931126 [wpt PR 49159] - Enable ShadowRealm testing for DOMException, a=testonly
Automatic update from web-platform-tests
Enable ShadowRealm testing for DOMException

Adds the appropriate metadata for the existing tests for the functionality
of DOMException to additionally be tested in a ShadowRealm.

Adds the same IDL array to the IDL tests for DOMExceptions in ShadowRealm
as for DOMExceptions in other realms.

--

wpt-commits: 73195b08b0d7a4a4251f8b3399af24efd3de17cc
wpt-pr: 49159
2024-11-20 09:15:04 +00:00
moz-wptsync-bot
31615096f6 Bug 1930534 [wpt PR 49108] - Update wpt metadata, a=testonly
wpt-pr: 49108
wpt-type: metadata
2024-11-20 09:15:03 +00:00
Philip Chimento
10340a4bf4 Bug 1930534 [wpt PR 49108] - Run ShadowRealm tests in multiple scopes, a=testonly
Automatic update from web-platform-tests
Change 'shadowrealm' global into a shorthand for all possible ShadowRealm scopes

In order to automatically run tests not only in a ShadowRealm created in a
window scope, but also in ShadowRealms created in other realms, change the
'shadowrealm' global type to a collection, and rename the existing
ShadowRealm handler to 'shadowrealm-in-window'.

--
Remove monkeypatch of globalThis.self in ShadowRealm

As per https://github.com/whatwg/html/pull/9893, ShadowRealmGlobalScope
should have a `self` attribute already. There is no need to monkeypatch it
for the test harness.

--
Factor out JS code that will be common to multiple ShadowRealm handlers

We will add multiple ShadowRealm handlers, and they will all need to set
up certain global properties. Avoid repeating this code in each handler
as well as in idlharness-shadowrealm.js.

This should also increase readability, which is good since the ShadowRealm
setup code can be confusing.

--
Add 'shadowrealm-in-shadowrealm' global

This will add to any test with global=shadowrealm in its metadata, an
.any.shadowrealm-in-shadowrealm.html variant.

The test wrapper creates an outer ShadowRealm, which creates an inner
ShadowRealm and runs the tests inside that, relaying the results through
the outer ShadowRealm.

--
Add 'shadowrealm-in-dedicatedworker' global

This will add to any test with global=shadowrealm in its metadata, an
.any.shadowrealm-in-dedicatedworker.html variant.

The test loads an intermediate .any.worker-shadowrealm.js wrapper into a
Worker, and forwards the message port to the Worker's message port so that
fetch_tests_from_worker can receive the results.

--
Add 'shadowrealm-in-sharedworker' global

This will add to any test with global=shadowrealm in its metadata, an
.any.shadowrealm-in-sharedworker.html variant.

The test loads the same intermediate .any.worker-shadowrealm.js wrapper as
.any.shadowrealm-in-dedicatedworker.html, but populates a 'port' variable
with the port received from the connect event, instead of calling the
global postMessage since that won't work in a SharedWorker.

--
Add 'shadowrealm-in-serviceworker' global

This will add to any test with global=shadowrealm in its metadata, an
.any.shadowrealm-in-serviceworker.html variant.

We have to use a slightly different .any.serviceworker-shadowrealm.js
wrapper from the wrapper used for the other types of workers, because
dynamic import() is forbidden in ServiceWorker scopes. Instead, add a
utility function to set up a fakeDynamicImport() function inside the
ShadowRealm which uses the fetch adaptor to get the module's source text
and evaluate it in the shadowRealm.

Also add a case for ServiceWorkers to getPostMessageFunc(), which returns
a postMessage() drop-in replacement that broadcasts the message to all
clients, since test result messages from the ShadowRealm are not in
response to any particular message received by the ServiceWorker.

Note '.https.' needs to be added to the test path.

--
Add 'shadowrealm-in-audioworklet' global

This will add to any test with global=shadowrealm in its metadata, an
.any.shadowrealm-in-audioworklet.html variant.

The wrapper here is similar to the one for ServiceWorkers, since dynamic
import() is also forbidden in worklet scopes. But additionally fetch() is
not exposed, so we add a utility function to set up the ability to call
the window realm's fetch() through the AudioWorklet's message port.

We also add /resources/testharness-shadowrealm-audioworkletprocessor.js to
contain most of the AudioWorklet setup boilerplate, so that it isn't
written inline in serve.py.

Note '.https.' needs to be added to the test path.

--

wpt-commits: 9c8db8af89efbe0f67b215af2a6b49e9564e2971, 65a205aea5d02ff5bea7b1a0579287035d02d6c4, eb9c8e7259ef8bd5cca5019c1ca15ccd430e81dc, 3a20c56893472783b5e20c0d61cbb7b7b278cc6d, 7d8458ed291b139307430a102180c9a617d7876e, 42160ae827c863ac6787c8451fe377901c8f0652, 59367bb21d053abb9ed6de3cca5409486816acc9, 60d6c48e5fa76876bc3924b9d6185dfb56c9ab1c
wpt-pr: 49108
2024-11-20 09:15:02 +00:00
Guohui Deng
4cfe314e4b Bug 1931981 [wpt PR 49240] - Put timing values of DocumentTiming in a GCed object, a=testonly
Automatic update from web-platform-tests
Put timing values of DocumentTiming in a GCed object

So they can outlive the document, and PerformanceNavigationTiming can
collect them.

Bug: 40793421
Change-Id: I2cbb53862ff9fab08f963d9408ef65ff462e5dd7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5935276
Reviewed-by: David Baron <dbaron@chromium.org>
Commit-Queue: Guohui Deng <guohuideng@microsoft.com>
Reviewed-by: Noam Rosenthal <nrosenthal@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384608}

--

wpt-commits: d639d949a473d412a3557eab71eba43a58420f3f
wpt-pr: 49240
2024-11-20 09:15:02 +00:00
Camillia Smith Barnes
3b40443cd0 Bug 1931975 [wpt PR 49238] - Shared Storage: Fix web test .well-known file (_ to -), a=testonly
Automatic update from web-platform-tests
Shared Storage: Fix web test .well-known file (_ to -)

We fix a typo where an underscore should have been a hyphen.

Bug: 376278213
Change-Id: I8f2675e3e752817ca344abaee45b00371761365d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6033313
Commit-Queue: Yao Xiao <yaoxia@chromium.org>
Reviewed-by: Yao Xiao <yaoxia@chromium.org>
Commit-Queue: Cammie Smith Barnes <cammie@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384607}

--

wpt-commits: aa824139f77d4481c518eb5b877405a1a4f44a3b
wpt-pr: 49238
2024-11-20 09:15:01 +00:00
moz-wptsync-bot
b433cadd59 Bug 1931955 [wpt PR 49234] - Update wpt metadata, a=testonly
wpt-pr: 49234
wpt-type: metadata
2024-11-20 09:15:00 +00:00
Oriol Brufau
b57605dbb1 Bug 1931955 [wpt PR 49234] - Fix min/max-content block size of replaced element, a=testonly
Automatic update from web-platform-tests
Fix min/max-content block size of replaced element

The min-content and max-content sizes on the block axis depend on the
inline size. But when computing the SizeConstraint corresponding to the
inline axis, we were resolving the preferred inline size ignoring
intrinsic keywords. Now we will only ignore `auto`.

Also, this patch refactors the logic to compute the min-content and
max-content block sizes after fully resolving the inline size.
This avoids having to resolve the inline sizing properties twice.

Signed-off-by: Oriol Brufau <obrufau@igalia.com>

--

wpt-commits: f1eaa58ed9d3e0a9d875387422878f3640c79f97
wpt-pr: 49234
2024-11-20 09:14:59 +00:00
moz-wptsync-bot
ff3520f23d Bug 1931968 [wpt PR 49236] - Update wpt metadata, a=testonly
wpt-pr: 49236
wpt-type: metadata
2024-11-20 09:14:59 +00:00
Di Zhang
e4e37992cd Bug 1931968 [wpt PR 49236] - [focus] Make mouse focus use flat tree parent, a=testonly
Automatic update from web-platform-tests
[focus] Make mouse focus use flat tree parent

This is an updated version of patch:
https://crrev.com/c/1514433

Currently, mouse-triggered event will traverse up parentOrShadowHost
to find fallback element to receive mouse focus. This doesn't make sense
for slotted content, where we expect the parent to receive focus to be
the assigned slot. This is fixed by traversing using the Flat Tree.

In the DOM spec for the Dispatch algorithm [1]:

"If isActivationEvent is true, event’s bubbles attribute is true,
activationTarget is null, and parent has activation behavior, then set
activationTarget to parent."

The parent is found using the get the parent algorithm [2]:
"A node’s get the parent algorithm, given an event, returns the node’s
assigned slot, if node is assigned; otherwise node’s parent."

Previously, this patch was reverted because it broke the text selection
in DevTools Network panel, which uses slots. This is fixed by
updating FrameSelection to use flat tree traversal to find parent.

The change is behind flag MouseFocusFlatTreeParent.

[1] https://dom.spec.whatwg.org/#concept-event-dispatch
[2] https://dom.spec.whatwg.org/#get-the-parent

Change-Id: Ibfeaebab0dce4817c34b447f540e784b12b9ab56
Bug: 41420461
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6004068
Auto-Submit: Di Zhang <dizhangg@chromium.org>
Commit-Queue: David Baron <dbaron@chromium.org>
Reviewed-by: David Baron <dbaron@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384575}

--

wpt-commits: 8c7d2bc8f83d8a38e51178ce132f3eed17275b8b
wpt-pr: 49236
2024-11-20 09:14:58 +00:00
Noam Rosenthal
d5155e8e84 Bug 1931969 [wpt PR 49237] - Deflake and speed up LoAF tests, a=testonly
Automatic update from web-platform-tests
Deflake and speed up LoAF tests

The main cause for flakiness in long-animation-frame tests
was the fact that long animation frames can be caused by
arbitrary system operations, unrelated to the ones created by
the test, and those would generate noise that would make the
tests believe that the entries are incorrect.

The previous mitigation was to generate really long LoAFs (360ms),
filter only really-long LoAFs, and also retry 10 times.
However, this brittle approach had several issues:
- In some cases there could be enough noise where this wouldn't filter
  it well enough.
- If the implementation itself is flaky, the test would pass.
- It makes the test very slow and CPU-consuming (a generated LoAF is
  a CPU spin).

The new approach, is to mark the time during calls to `busy_wait`,
and filter only the LoAFs that contain the actual `busy_wait` call.
This filters out any LoAF that we didn't generate ourselves in the test.
This also allows us to reduce the `busy_wait` time from 360ms to 120ms.

Refactored some tests to call the utils `busy_wait` instead of rolling
their own.

Bug: 40263438
Bug: 41484738
Bug: 369956892
Bug: 336691003
Bug: 335003887
Change-Id: Idf3505aef54837f7d7200b0dc57dffdec7c748c6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6022841
Reviewed-by: Scott Haseley <shaseley@chromium.org>
Commit-Queue: Noam Rosenthal <nrosenthal@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384560}

--

wpt-commits: 2b26674334f57a229efb3dc31c5d147fa3c27784
wpt-pr: 49237
2024-11-20 09:14:57 +00:00
moz-wptsync-bot
3c2fa81212 Bug 1931937 [wpt PR 49232] - Update wpt metadata, a=testonly
wpt-pr: 49232
wpt-type: metadata
2024-11-20 09:14:56 +00:00
Mason Freed
294ef359da Bug 1931937 [wpt PR 49232] - Implement new behavior for popovers contained within invokers, a=testonly
Automatic update from web-platform-tests
Implement new behavior for popovers contained within invokers

In this case:

```
<button popovertarget=foo>Activate
  <div popover id=foo>Clicking me shouldn't close me</div>
</button>
```

clicking the button properly activates the popover, however,
clicking on the popover itself after that should **not** close
the popover. It currently does because the popover click
bubbles to the `<button>` and activates the invoker, which
toggles the popover closed.

This CL changes that behavior so that clicks on the popover
in the case above no longer re-invoke the popover.

Spec PR:
  https://github.com/whatwg/html/pull/10770

Bug: 379241451
Change-Id: Iab67127c46a97a081a7818bfd917864729bf8b5c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6026982
Auto-Submit: Mason Freed <masonf@chromium.org>
Commit-Queue: Mason Freed <masonf@chromium.org>
Reviewed-by: David Baron <dbaron@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384498}

--

wpt-commits: 50f7c0548260cdc2f11bface1816a283f9314de8
wpt-pr: 49232
2024-11-20 09:14:55 +00:00
moz-wptsync-bot
6d1d700885 Bug 1927948 [wpt PR 48870] - Update wpt metadata, a=testonly
wpt-pr: 48870
wpt-type: metadata
2024-11-20 09:14:55 +00:00
Eugene Zemtsov
afd83a3eca Bug 1927948 [wpt PR 48870] - Move 'valid codec with spaces' to validButUnsupportedConfigs configs, a=testonly
Automatic update from web-platform-tests
Move 'valid codec with spaces' to validButUnsupportedConfigs configs (#48870)

* Move 'valid codec with spaces' to validButUnsupported configs

UA is not expected to support codec strings with whitespaces around it, even though it's a valid config.

* Remove trailing whitespaces at line 100
--

wpt-commits: 30ee69b644196db4964bc2597d6aad7d37e3beed
wpt-pr: 48870
2024-11-20 09:14:54 +00:00
moz-wptsync-bot
e3ef3f46ce Bug 1931923 [wpt PR 49231] - Update wpt metadata, a=testonly
wpt-pr: 49231
wpt-type: metadata
2024-11-20 09:14:53 +00:00
Di Zhang
d05a94261b Bug 1931923 [wpt PR 49231] - [Selection API] Add DOM mutation removal test, a=testonly
Automatic update from web-platform-tests
[Selection API] Add DOM mutation removal test

Add nested shadow host case.

Change-Id: Iebf8f6dfc52b7c5274b29946b6389f7ad717759f
Bug: 40286116
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6026955
Auto-Submit: Di Zhang <dizhangg@chromium.org>
Reviewed-by: Siye Liu <siliu@microsoft.com>
Commit-Queue: Siye Liu <siliu@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#1384420}

--

wpt-commits: bfd44a5a07a419124c9a9bbdb095510b6ecdb509
wpt-pr: 49231
2024-11-20 09:14:52 +00:00
Dominic Farolino
00f5d7764a Bug 1931932 [wpt PR 49230] - DOM: Capture apparent getSelection() getter side effects, a=testonly
Automatic update from web-platform-tests
DOM: Capture apparent getSelection() getter side effects

This CL adds tests (and unfortunately, expectations) for a bug that has
to do with getters on `getSelection()` having side effects on the
internal range maintained by `blink::DOMSelection`, when a selection's
anchor node is removed from the DOM.

R=masonf

Bug: 379275917
Change-Id: Ic69f910b5d070a55a6f0c3992f45c0ad939124d0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6026810
Reviewed-by: Mason Freed <masonf@chromium.org>
Commit-Queue: Dominic Farolino <dom@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384416}

--

wpt-commits: e60ae5825b9f69af2581e0ae8955f2dbe5e0ebd1
wpt-pr: 49230
2024-11-20 09:14:52 +00:00
Kevin Ellis
e2ed0b2a4e Bug 1931912 [wpt PR 49228] - Refactor pointerevent_poitnerId_scope test, a=testonly
Automatic update from web-platform-tests
Refactor pointerevent_poitnerId_scope test

This test was periodically flaking on debug builds.  A timeout would
resolve if we did not see the expected number of events. This is
possible due to event coalescing. Added a click on each of the targets
to ensure that we get the expected number of events.

Also removed the manual testing instructions and converted the test to
be promise driven.

Bug: 352327319
Change-Id: I3aefac84b6be0ca76a9678e03eef3c89d0e18092
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6020360
Reviewed-by: Mustaq Ahmed <mustaq@chromium.org>
Commit-Queue: Kevin Ellis <kevers@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384414}

--

wpt-commits: a113ac4fa26c11b773c3f3cafe95f95370908f41
wpt-pr: 49228
2024-11-20 09:14:51 +00:00
moz-wptsync-bot
d5d46a30e7 Bug 1931882 [wpt PR 49226] - Update wpt metadata, a=testonly
wpt-pr: 49226
wpt-type: metadata
2024-11-20 09:14:50 +00:00
Steinar H. Gunderson
71c2abdc74 Bug 1931882 [wpt PR 49226] - [css-values-5] Implement sibling-index() / sibling-count()., a=testonly
Automatic update from web-platform-tests
[css-values-5] Implement sibling-index() / sibling-count().

This is behind a flag for now, not the least because having such
element-dependent functions available will crash some properties'
parsers, which expect to be able to evaluate calc() expressions
at parse time (for e.g. clamping).

Bug: 40282719
Change-Id: I38d88da8d0492d8725089e4bb3f71944c564a7ac
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5097285
Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Steinar H Gunderson <sesse@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384353}

--

wpt-commits: 2bc436578a38a71ad123b53c4fca4965eee916fc
wpt-pr: 49226
2024-11-20 09:14:50 +00:00
Noam Rosenthal
e0356e8147 Bug 1931895 [wpt PR 49227] - Add WebDX for long animation frames & page visibility state, a=testonly
Automatic update from web-platform-tests
Add WebDX for long animation frames & page visibility state

Using existing UseCounters.

Change-Id: I0649ef64e6e812e97c42346e183b0bdcccdc8b13
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6031049
Commit-Queue: Noam Rosenthal <nrosenthal@chromium.org>
Reviewed-by: Annie Sullivan <sullivan@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384341}

--

wpt-commits: 1012b6102284735222165dc1e38f9f437fdc7c3e
wpt-pr: 49227
2024-11-20 09:14:49 +00:00
moz-wptsync-bot
82d6bdbb12 Bug 1931875 [wpt PR 49223] - Update wpt metadata, a=testonly
wpt-pr: 49223
wpt-type: metadata
2024-11-20 09:14:48 +00:00
Mason Freed
8073aa6856 Bug 1931875 [wpt PR 49223] - Fix dialog.requestClose() in two ways, a=testonly
Automatic update from web-platform-tests
Fix dialog.requestClose() in two ways

1. The prior implementation ignored the argument to requestClose.
   With this CL, requestClose(string) stores away string and then
   returns it from the CloseWatcher close event.
2. If the dialog's closedBy state is None (either explicitly or
   through the "Auto" state), requestClose throws an exception.

I also added a more significant set of tests for requestClose() in
all states.

This goes along with recent discussion about throwing exceptions if
requestClose() is called when the dialog isn't in the right state,
relative to closedBy:

  https://github.com/whatwg/html/issues/10164#issuecomment-2479792309

The spec PR has been updated accordingly:

  https://github.com/whatwg/html/pull/10737

Bug: 376516550
Change-Id: I023845844e6afb4da9a71637d517ac78d2861329
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6026242
Auto-Submit: Mason Freed <masonf@chromium.org>
Reviewed-by: David Baron <dbaron@chromium.org>
Commit-Queue: David Baron <dbaron@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384345}

--

wpt-commits: 6f4f09f92913154e70e9214636ee0e60c65f5d05
wpt-pr: 49223
2024-11-20 09:14:47 +00:00
moz-wptsync-bot
7a8c45fb6c Bug 1931879 [wpt PR 49225] - Update wpt metadata, a=testonly
wpt-pr: 49225
wpt-type: metadata
2024-11-20 09:14:47 +00:00
Mason Freed
4ab765d06d Bug 1931879 [wpt PR 49225] - Remove .tentative from popover invoker WPTs, a=testonly
Automatic update from web-platform-tests
Remove .tentative from popover invoker WPTs

The spec PR landed:

  https://github.com/whatwg/html/pull/10728

so this removes .tentative from the WPTs.

Bug: 364669918
Change-Id: I35e50fff8d94ff52e212844814a4e597c35d78b4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6025803
Commit-Queue: Di Zhang <dizhangg@chromium.org>
Reviewed-by: Di Zhang <dizhangg@chromium.org>
Auto-Submit: Mason Freed <masonf@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1384325}

--

wpt-commits: 6572d5b33f7e95cb1f857ed76d2cdd7939ef47ad
wpt-pr: 49225
2024-11-20 09:14:46 +00:00
Julian Descottes
fa1e9ef710 Bug 1932162 - Expose fetch destination on nsILoadInfo r=necko-reviewers,valentin
Depends on D229378

Expose a getter on nsILoadInfo to easily retrieve the fetch destination as a string
This avoids duplicating the mapping logic in JS for webdriver bidi

Differential Revision: https://phabricator.services.mozilla.com/D229384
2024-11-20 09:07:37 +00:00
Julian Descottes
d5379133cb Bug 1932162 - Set the initiatorType in HttpChannelParent and expose to scripts r=necko-reviewers,valentin
This changeset synchronizes the initiatorType from the child channel to the parent channel in asyncOpen.
It also removes noscript from initiatorType in nsITimedChannel

Differential Revision: https://phabricator.services.mozilla.com/D229378
2024-11-20 09:07:36 +00:00
Mugurell
6979182bd9 Bug 1927882 - part 3 - Don't theme the system bars while in custom tabs if navbar is enabled r=android-reviewers,tchoh,harrisono
Needed to also add the default toolbar color as the default OS navigation bar color
to ensure that we have a proper default if system bars' backgrounds are not updated.

Differential Revision: https://phabricator.services.mozilla.com/D229495
2024-11-20 08:37:26 +00:00
Mugurell
f4caf42c5f Bug 1927882 - part 2 - Don't use external theming for the addressbar in custom tabs if navbar is enabled r=android-reviewers,skhan,harrisono
Differential Revision: https://phabricator.services.mozilla.com/D228339
2024-11-20 08:37:26 +00:00
Mugurell
2063326dc9 Bug 1927882 - part 1 - Remove external theming support for the navbar in custom tabs r=android-reviewers,skhan,harrisono
Differential Revision: https://phabricator.services.mozilla.com/D228338
2024-11-20 08:37:25 +00:00
Dimi
ab2c37bc48 Bug 1932075 - Update Owner and Peer of Toolkit::PasswordManager & Toolkit::FormAutofill r=credential-management-reviewers,zeid,jneuberger,joschmidt,mtigley
Differential Revision: https://phabricator.services.mozilla.com/D229461
2024-11-20 08:36:56 +00:00
Timothy Nikkel
81a5a7593c Bug 1931798. Only check for apz listeners when building compositor hit test info. r=gfx-reviewers,nical
The info that we get from the check is only used for compositor hit test info and it takes a decent amount of time to check.

Differential Revision: https://phabricator.services.mozilla.com/D229290
2024-11-20 08:18:42 +00:00
Andreas Pehrson
23bdfb1423 Bug 1534688 - Update wpt expectations for H264 presence. r=webrtc-reviewers,bwc
Differential Revision: https://phabricator.services.mozilla.com/D228951
2024-11-20 08:16:16 +00:00
Andreas Pehrson
d0df9bd5ec Bug 1534688 - Make sure WPT using H264 (fakeopenh264) for encode uses fakeopenh264 for decode too. r=webrtc-reviewers,bwc
Differential Revision: https://phabricator.services.mozilla.com/D228950
2024-11-20 08:16:16 +00:00
Andreas Pehrson
88b9ba20eb Bug 1534688 - Use fake GMP plugins in wpt from mozharness. r=media-playback-reviewers,jgraham,webrtc-reviewers,bwc,padenot
Differential Revision: https://phabricator.services.mozilla.com/D228949
2024-11-20 08:16:15 +00:00
Andreas Pehrson
88eb8c517d Bug 1534688 - Use fake GMP plugins in wpt from mach. r=media-playback-reviewers,jgraham,webrtc-reviewers,bwc,padenot
Differential Revision: https://phabricator.services.mozilla.com/D228948
2024-11-20 08:16:15 +00:00
Norisz Fay
2deb9bcf80 Backed out changeset 7aa84bf088da (bug 1929160) as requested by developer for causing regressions CLOSED TREE 2024-11-20 10:47:48 +02:00
Norisz Fay
72e6345fca Backed out changeset 06a65f0d5e9d for causing bc PrivateBrowsing related failures on browser_privatebrowsing_last_private_browsing_context_exited.js, browser_firefoxview_tab.js, browser_separatePrivateDefault_differentEngine.js, browser_policy_privatebrowsingmodeavailability.js 2024-11-20 10:45:38 +02:00
Simon Friedberger
77c5b29cdf No bug. Small logic error, r=arai
Differential Revision: https://phabricator.services.mozilla.com/D229456
2024-11-20 07:18:54 +00:00
Mozilla Releng Treescript
c542169f6b no bug - Bumping Mobile l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
ach -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
an -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ar -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ast -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
az -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
be -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bg -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
br -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ca -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cak -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cy -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
da -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
de -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
dsb -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
el -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
en-CA -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
en-GB -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
eo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-AR -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-CL -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-ES -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-MX -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
et -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
eu -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fa -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ff -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fi -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fy-NL -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ga-IE -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gd -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gu-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
he -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hi-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hsb -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hu -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hy-AM -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ia -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
id -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
is -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
it -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ja -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ka -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kab -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
km -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ko -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lij -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lt -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ltg -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lv -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
meh -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
mix -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ml -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
mr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ms -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
my -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nb-NO -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ne-NP -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nn-NO -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
oc -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pa-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pt-BR -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pt-PT -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
rm -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ro -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ru -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
son -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sq -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sv-SE -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ta -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
te -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
th -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
tl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
tr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
trs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
uk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ur -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
uz -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
vi -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
wo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
xh -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
zam -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
zh-CN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
zh-TW -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
2024-11-20 07:00:23 +00:00
Mozilla Releng Treescript
ddd2363479 no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
ach -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
af -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
an -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ar -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ast -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
az -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
be -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bg -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
br -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
brx -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
bs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ca -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ca-valencia -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cak -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ckb -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
cy -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
da -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
de -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
dsb -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
el -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
en-CA -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
en-GB -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
eo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-AR -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-CL -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-ES -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
es-MX -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
et -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
eu -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fa -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ff -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fi -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fur -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
fy-NL -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ga-IE -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gd -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
gu-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
he -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hi-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hsb -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hu -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hy-AM -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
hye -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ia -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
id -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
is -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
it -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ja -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ja-JP-mac -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ka -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kab -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
km -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
kn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ko -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lij -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lt -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ltg -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
lv -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
meh -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
mk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
mr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ms -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
my -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nb-NO -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ne-NP -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
nn-NO -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
oc -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pa-IN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pt-BR -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
pt-PT -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
rm -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ro -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ru -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sat -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sc -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
scn -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sco -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
si -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
skr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
son -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sq -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
sv-SE -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
szl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ta -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
te -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
tg -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
th -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
tl -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
tr -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
trs -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
uk -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
ur -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
uz -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
vi -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
wo -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
xh -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
zh-CN -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
zh-TW -> 4d7aeff7eed97cd66aa11f2f8e9fb205c7434b1d
2024-11-20 07:00:17 +00:00
Masayuki Nakano
43a805714a Bug 1930277 - Make nsHTMLCopyEncoder::RangeNodeContext::IncludeInContext not treat inline editing host as an contextual inline element r=edgar,dom-core
It treats some inline elements as contextual elements.  Then, they will be
preserved in copied HTML fragment.  However, if an inline element is an editing
host, we don't want to contain it to the copied fragment because pasting it
causes duplicating same style into same editing host.  So, if the style includes
relative style like `font-size: 2em`, it will cause bigger text than the
surrounding text.  Additionally, the inline editing host usually has a border
but we don't want to make it appear in editable text.

Unfortunately, with this change, we stop copying the text style specified to
the inline editing host.  However, this is same behavior as when the editing
host is a block element like `<div>`.  Note that pasted text will be merged into
the inline editing host style.  Therefore, if and only if the destination has
different style from the editing host, the result might be different from the
expected one by the user.  However, this is a long standing issue, see
bug 1428046, for example.

Differential Revision: https://phabricator.services.mozilla.com/D228623
2024-11-20 04:35:32 +00:00
James Teh
816d5e833d Bug 1930322 part 4: Use LocalAccessible::RelativeBounds to calculate the coordinates in LocalAccessible::DispatchClickEvent. r=morgan
Previously, we used the primary frame.
This was problematic for image map areas because they don't have a frame, so we were always using the top left of the entire image.
RelativeBounds has been overridden for image map areas to correctly calculate coordinates.
Therefore, rather than special casing image map areas again, use RelativeBounds in DispatchClickEvent.

Differential Revision: https://phabricator.services.mozilla.com/D229300
2024-11-20 04:13:49 +00:00
James Teh
9f2225aa67 Bug 1930322 part 3: Fixes to browser_caching_actions.js test. r=morgan
As part of these tests, we need to wait for all specified DOM events to fire on a node.
We do this by setting up a Promise for each event, wrapping these in a single Promise which resolves when all events fire, storing this wrapping Promise on the Window object, and later (in a separate task) waiting on this wrapping Promise.
Previously, after any event fired, we set the Window object variable holding the wrapping Promise to null in order to clean it up.
This resulted in a race condition where if the first event fired before the second task ran to wait on the wrapping Promise, the second task would simply await null, meaning that it didn't wait at all.
The practical upshot is that we could potentially pass the tests even if the required DOM events never fired and remain blissfully unaware.
To fix this, we instead clear the wrapping Promise variable in the second task after waiting on it.
Without this fix, the test I add in the next patch would pass even without the bug being fixed.
In addition, to make debugging timeouts easier, we now log the id of the element being tested.

Differential Revision: https://phabricator.services.mozilla.com/D229299
2024-11-20 04:13:49 +00:00
James Teh
3ba01f4aa1 Bug 1930322 part 2: cleanup: Use NS_NewRunnableFunction instead of an inline Runnable subclass. r=morgan
This just improves readability.
There should be no functional change except that I gave this Runnable a proper name while I was at it.

Differential Revision: https://phabricator.services.mozilla.com/D229298
2024-11-20 04:13:48 +00:00
James Teh
75767f504f Bug 1930322 part 1: cleanup: Remove aContent argument to LocalAccessible::DoCommand/DispatchClickEvent. r=morgan
We never set this argument to anything other than the default, which meant it always used the LocalAccessible's mContent.
This makes the argument unnecessary and potentially confusing in an area which is already a bit difficult to follow, so just remove it.
There should be no functional change.

Differential Revision: https://phabricator.services.mozilla.com/D229297
2024-11-20 04:13:48 +00:00
Drew Willcoxon
fc3d5e493b Bug 1932223 - Full keywords should not bypass length threshold for Sponsored Suggestion Higher Placement Phase 3. r=daisuke
Differential Revision: https://phabricator.services.mozilla.com/D229550
2024-11-20 03:33:33 +00:00
Noah Bond
88d8a707dc Bug 1927892 - Implement the WebCompat UI and UI-adjacent business logic r=android-reviewers,calu
Differential Revision: https://phabricator.services.mozilla.com/D229032
2024-11-20 03:00:36 +00:00
Jason Prickett
5b60e5ee52 Bug 1928465 - Add asrouter trigger listener for button click r=mviar,omc-reviewers
This patch adds an `elementClick` trigger listener that can be used like so:

```
trigger: {
        id: "elementClicked",
        params: ["element-id"],
}
```

Differential Revision: https://phabricator.services.mozilla.com/D228399
2024-11-20 02:58:51 +00:00