764019 Commits

Author SHA1 Message Date
Matt Woodrow
912b7f8ef1 Bug 1721537 - Split out WindowRenderer base class from LayerManager. r=miko
Depends on D120439

Differential Revision: https://phabricator.services.mozilla.com/D120440
2021-07-22 22:58:57 +00:00
Matt Woodrow
da45121505 Bug 1721537 - Simplify nsIWidget::GetLayerManager by removing unused parameters. r=miko
Differential Revision: https://phabricator.services.mozilla.com/D120439
2021-07-22 22:58:57 +00:00
surajeet310
76ad0a69de Bug 1720951 - Removed unused 'ensure_bytes()' and 'ensure_unicode()' from runxpcshelltests.py r=mhentges
Since the functions 'ensure_bytes()' and 'ensure_unicode()' were unused, hence removed.

Differential Revision: https://phabricator.services.mozilla.com/D120600
2021-07-22 22:25:30 +00:00
Mike Kaply
c734740c1e Bug 1692109 - No need to wait for menu hide. r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D120676
2021-07-22 22:21:19 +00:00
Bryce Seager van Dyk
5af3985b1c Bug 1721867 - Remove the concept of decryptor id from the GMP. r=alwu,jolin
Decryptor id is no longer used anywhere functional, but we still have code
referencing and plumbing values around. This patch removes all the remaining
usage I can find in Gecko.

Differential Revision: https://phabricator.services.mozilla.com/D120647
2021-07-22 22:19:53 +00:00
Scott
ae31ffcdb6 Bug 1720567 - Pocket panel, fixing enter key for tag input. r=gvn
Differential Revision: https://phabricator.services.mozilla.com/D120029
2021-07-22 22:02:57 +00:00
Mike Hommey
2979d0b082 Bug 1635327 - Disable __tls_get_addr interception in sanitizer builds. r=firefox-build-system-reviewers,emilio,andi
Sanitizers try to intercept __tls_get_addr to find DTLS blocks. In some
cases, they fail miserably with a crash. And in the cases they don't
crash, they don't seem to actually work properly anyways.

This affects both build time when running host programs compiled with
sanitizer flags (this only actually affects rust build
scripts/procedural macros on non-cross builds, not C/C++ host programs),
and execution time, e.g. when running tests.

Differential Revision: https://phabricator.services.mozilla.com/D120574
2021-07-22 22:00:59 +00:00
Jeff Muizelaar
e873e6aa0f Bug 1721903 - Add the error code when we fail to Map a tile.
Differential Revision: https://phabricator.services.mozilla.com/D120675
2021-07-22 21:33:56 +00:00
Mike Hommey
3f28878f58 Bug 1721755 - Only set EARLY_BETA_OR_EARLIER on beta and earlier. r=firefox-build-system-reviewers,andi,mhentges
This matches the spirit of what BUILDING_RELEASE used to do before bug
1597834.

Differential Revision: https://phabricator.services.mozilla.com/D120563
2021-07-22 21:28:58 +00:00
Toshihito Kikuchi
7237c89b3d Bug 1715858 - Part3. Add a new category memory_watcher to the event ping. r=KrisWright
The new event is recoreded when we detect the system's memory is no longer low.
Each event object contains three numbers:

  1) how many times a tab was unloaded during the low-memory situation
  2) how many memory-pressure events were dispatched during the low-memory
     situation
  3) how long we were in the low-memory situation in seconds

These need to be collected as the event ping because the memory situation
may repeatedly be switched between low-memory and high-memory.  We want to
collect it every time the memory situation gets back to normal.  If we collect
it as the main ping (like Histogram), all numbers are summed up and we cannot
evaluate each low-memory period.

Differential Revision: https://phabricator.services.mozilla.com/D120021
2021-07-22 21:15:01 +00:00
Toshihito Kikuchi
641797c018 Bug 1715858 - Part2. Add telemetry scalars to count the tab unload and reload events. r=NeilDeakin
This patch adds two scalars:

* `browser.engagement.tab_unload_count`: Incremented by 1 when TabUnloader
  successfully unloaded a tab.
* `browser.engagement.tab_reload_count`: Incremented by 1 when an unloaded
  tab was reloaded.

The value of `browser.engagement.tab_reload_count` will be the same as
the count of the histogram `TAB_UNLOAD_TO_RELOAD` data, but we still need
this scalar to compare it to `browser.engagement.tab_unload_count`, which
tells us the ratio of reload-after-unload tabs to all unloaded tabs.

Depends on D120019

Differential Revision: https://phabricator.services.mozilla.com/D120020
2021-07-22 21:15:00 +00:00
Toshihito Kikuchi
a7bf50d1d1 Bug 1715858 - Part1. Add a new telemetry histogram TAB_UNLOAD_TO_RELOAD. r=NeilDeakin
The new histogram `TAB_UNLOAD_TO_RELOAD` records how long a tab had been
unloaded until it was reload by a user.  With this data, we can evaluate
the selection logic to choose a tab to unload.  For example, if many of
unloaded tabs are reloaded within 30 seconds or so, we unload a wrong tab.

Differential Revision: https://phabricator.services.mozilla.com/D120019
2021-07-22 21:15:00 +00:00
Mike Kaply
f2649915eb Bug 1720389 - Add IS_ESR to AppConstants and rename ESR #ifdef to MOZ_ESR. r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D120371
2021-07-22 20:00:26 +00:00
Tom Ritter
7026afec02 Bug 1717076: Tweak some of the existing documentation r=andi
Depends on D118211

Differential Revision: https://phabricator.services.mozilla.com/D120515
2021-07-22 19:50:38 +00:00
Tom Ritter
1b8cf0af95 Bug 1717076: Add documentation about advanced checker techniques r=andi
Differential Revision: https://phabricator.services.mozilla.com/D118211
2021-07-22 19:50:37 +00:00
Tom Ritter
537031b360 Bug 1717076 - Add a quick-start guide for how to turn a matcher to a static analysis check r=andi
Differential Revision: https://phabricator.services.mozilla.com/D118248
2021-07-22 19:50:37 +00:00
Tom Ritter
72b427a860 Bug 1717076 - Move comments to a separate line r=freddyb
clang-query does not allow end-of-line comments, they need
to be on a separate line

Differential Revision: https://phabricator.services.mozilla.com/D118247
2021-07-22 19:50:37 +00:00
Neil Deakin
25c196780b Bug 1717684, remove the popupRangeParent and popupRangeOffset properties in document and just use the cached event in the PendingPopup, r=emilio
This also limits computing the range properties to only the context menu cases that need them rather than all popups.

Differential Revision: https://phabricator.services.mozilla.com/D120132
2021-07-22 19:50:10 +00:00
Neil Deakin
90e36968fc Bug 1717684, use a single temporary object that gets passed to the popup showing methods instead of setting a number of fields and relying on them being cleared after the popup is shown, r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D120131
2021-07-22 19:50:10 +00:00
Andrew Osmond
a91e7e6db4 Bug 1721455 - Move remaining Android CI tests to WebRender. r=ahal,jmaher
autoland

--- target_task_set@9865f63971f
+++ target_task_set@ao_ci_android
-test-android-em-7.0-x86_64-lite/debug-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-reftest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-test-verify-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-xpcshell-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-junit-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-reftest-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-test-verify-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64-lite/opt-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-media-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-plain-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-plain-gpu-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-reftest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-test-verify-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-test-verify-fis-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-junit-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-mochitest-media-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-mochitest-plain-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-mochitest-plain-gpu-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-reftest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-test-verify-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-test-verify-fis-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-web-platform-tests-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-web-platform-tests-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/opt-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-test-verify-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-test-verify-fis-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-test-verify-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-test-verify-fis-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-qr/opt-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-qr/opt-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-qr/opt-geckoview-test-verify-e10s
+test-android-em-7.0-x86_64-qr/opt-geckoview-test-verify-fis-e10s
-test-android-em-7.0-x86_64/debug-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64/debug-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-gtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64/debug-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64/debug-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64/debug-geckoview-reftest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-test-verify-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-xpcshell-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-gtest-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-test-verify-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64/opt-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-gtest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-junit-e10s
-test-android-em-7.0-x86_64/opt-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64/opt-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64/opt-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64/opt-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64/opt-geckoview-reftest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-test-verify-e10s
-test-android-em-7.0-x86_64/opt-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64/opt-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64/opt-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/opt-geckoview-xpcshell-e10s
+test-android-hw-p2-8-0-android-aarch64-qr/opt-geckoview-jittest-e10s
-test-android-hw-p2-8-0-android-aarch64/opt-geckoview-jittest-e10s

mozilla-central

--- target_task_set@9865f63971f
+++ target_task_set@ao_ci_android
-test-android-em-7.0-x86_64-lite/debug-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-reftest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64-lite/debug-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-media-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-plain-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-mochitest-plain-gpu-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-reftest-noqr-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-web-platform-tests-reftest-e10s
+test-android-em-7.0-x86_64-lite-qr/debug-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-junit-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-reftest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-web-platform-tests-backlog-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-web-platform-tests-reftest-backlog-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64-shippable-lite/opt-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/debug-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-qr/debug-isolated-process-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-crashtest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-crashtest-noqr-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-junit-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-junit-e10s-single-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-junit-fis-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-mochitest-media-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-mochitest-media-noqr-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-mochitest-plain-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-mochitest-plain-gpu-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-reftest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-reftest-noqr-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-web-platform-tests-backlog-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-web-platform-tests-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-web-platform-tests-reftest-backlog-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-web-platform-tests-reftest-e10s
+test-android-em-7.0-x86_64-shippable-lite-qr/opt-geckoview-xpcshell-e10s
+test-android-em-7.0-x86_64-shippable-qr/opt-geckoview-cppunit-e10s
+test-android-em-7.0-x86_64-shippable-qr/opt-geckoview-gtest-e10s
+test-android-em-7.0-x86_64-shippable-qr/opt-geckoview-web-platform-tests-backlog-e10s
+test-android-em-7.0-x86_64-shippable-qr/opt-geckoview-web-platform-tests-reftest-backlog-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-gtest-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-junit-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-reftest-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-web-platform-tests-backlog-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-web-platform-tests-reftest-backlog-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64-shippable/opt-geckoview-xpcshell-e10s
-test-android-em-7.0-x86_64/debug-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64/debug-geckoview-crashtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-gtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64/debug-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64/debug-geckoview-mochitest-plain-e10s
-test-android-em-7.0-x86_64/debug-geckoview-mochitest-plain-gpu-e10s
-test-android-em-7.0-x86_64/debug-geckoview-reftest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-crashtest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-e10s
-test-android-em-7.0-x86_64/debug-geckoview-web-platform-tests-reftest-e10s
-test-android-em-7.0-x86_64/debug-geckoview-xpcshell-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-cppunit-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-gtest-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-e10s-single-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-junit-fis-e10s
-test-android-em-7.0-x86_64/debug-isolated-process-geckoview-web-platform-tests-crashtest-e10s
+test-android-em-7.0-x86_64-shippable-qr/opt-geckoview-xpcshell-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-mobile-geckoview-youtube-playback-h264-sfr-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-mobile-geckoview-youtube-playback-hfr-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-allrecipes-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-amazon-search-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-espn-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-facebook-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-google-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-microsoft-support-e10s
-test-android-hw-g5-7-0-arm7-shippable/opt-browsertime-tp6m-essential-geckoview-youtube-watch-e10s
+test-android-hw-p2-8-0-android-aarch64-qr/debug-geckoview-jittest-e10s
+test-android-hw-p2-8-0-android-aarch64-shippable-qr/opt-browsertime-speedometer-mobile-chrome-m-e10s
+test-android-hw-p2-8-0-android-aarch64-shippable-qr/opt-browsertime-speedometer-mobile-fenix-e10s
+test-android-hw-p2-8-0-android-aarch64-shippable-qr/opt-browsertime-unity-webgl-mobile-chrome-m-e10s
+test-android-hw-p2-8-0-android-aarch64-shippable-qr/opt-browsertime-unity-webgl-mobile-fenix-e10s
+test-android-hw-p2-8-0-android-aarch64-shippable-qr/opt-geckoview-jittest-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-mobile-geckoview-youtube-playback-h264-sfr-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-mobile-geckoview-youtube-playback-hfr-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-mobile-geckoview-youtube-playback-vp9-sfr-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-speedometer-mobile-chrome-m-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-speedometer-mobile-fenix-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-speedometer-mobile-geckoview-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-allrecipes-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-amazon-search-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-espn-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-facebook-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-google-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-microsoft-support-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-tp6m-essential-geckoview-youtube-watch-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-unity-webgl-mobile-chrome-m-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-unity-webgl-mobile-fenix-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-browsertime-unity-webgl-mobile-geckoview-e10s
-test-android-hw-p2-8-0-android-aarch64-shippable/opt-geckoview-jittest-e10s
-test-android-hw-p2-8-0-android-aarch64/debug-geckoview-jittest-e10s
-test-android-hw-p2-8-0-arm7-shippable/opt-geckoview-jittest-all-e10s
-test-android-hw-p2-8-0-arm7/debug-geckoview-jittest-e10s
+test-android-hw-p2-8-0-arm7-qr/debug-geckoview-jittest-e10s
+test-android-hw-p2-8-0-arm7-shippable-qr/opt-geckoview-jittest-all-e10s

Differential Revision: https://phabricator.services.mozilla.com/D120383
2021-07-22 19:33:57 +00:00
Henrik Skupin
2fab354277 Bug 1721797 - [geckodriver] Remove test root folder when AndroidHandler gets dropped. r=webdriver-reviewers,jgraham
Differential Revision: https://phabricator.services.mozilla.com/D120614
2021-07-22 19:20:02 +00:00
Andrew Osmond
3a5223c7a1 Bug 1721829 - Move Linux mochitest-webgpu tests to run on WebRender only. r=jmaher
autoland, no change

mozilla-central

--- target_task_set@5ac6408ac3e
+++ target_task_set@ao_ci_linux_wpt_fixup
-test-linux1804-64-shippable/opt-mochitest-webgpu-e10s
-test-linux1804-64-shippable/opt-mochitest-webgpu-fis-e10s
-test-linux1804-64/debug-mochitest-webgpu-fis-e10s

Differential Revision: https://phabricator.services.mozilla.com/D120631
2021-07-22 19:19:29 +00:00
Markus Stange
523ac2e175 Bug 1721072 - Stop exporting getSymbolsFromThisBrowser and remove its pageContext argument. r=canaltinova
This function is now only used by the keyboard shortcuts and by the popup.

Differential Revision: https://phabricator.services.mozilla.com/D120166
2021-07-22 18:54:31 +00:00
Markus Stange
239ea3c657 Bug 1721072 - Improve type coverage for nsIProfiler. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120165
2021-07-22 18:54:30 +00:00
Markus Stange
e6f68680c1 Bug 1721072 - Clarify ActorReadyGeckoProfilerInterface situation. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120164
2021-07-22 18:54:30 +00:00
Markus Stange
e33b60e05f Bug 1721072 - Stop supplying a perfFront argument to about:profiling's gInit function. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120163
2021-07-22 18:54:30 +00:00
Markus Stange
c9bda00134 Bug 1721072 - Move perfFront out of the redux state, into component props. r=canaltinova
Now it's only used in components that are used in the devtools panel.
It is no longer used for about:profiling.

Differential Revision: https://phabricator.services.mozilla.com/D120162
2021-07-22 18:54:29 +00:00
Markus Stange
7ffab28686 Bug 1721072 - Move recordingState updates into the reducer. r=canaltinova
What ProfilerEventHandling was doing was basically a reducer, just
not in the place where reducers are normally put.

Differential Revision: https://phabricator.services.mozilla.com/D120161
2021-07-22 18:54:29 +00:00
Markus Stange
0b2272d8d5 Bug 1721072 - Move ProfilerEventHandling initialization logic into the reducer. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120160
2021-07-22 18:54:28 +00:00
Markus Stange
72afc2d946 Bug 1721072 - Run prettier on perf.d.ts. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120159
2021-07-22 18:54:28 +00:00
Markus Stange
f4d62b0632 Bug 1721072 - Stop using combineReducers, for improved type coverage. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120158
2021-07-22 18:54:28 +00:00
Markus Stange
a399b402ed Bug 1721072 - Fix type for isSupportedPlatform. r=canaltinova
This wasn't caught because combineReducers is currently not checked by the type system.

Differential Revision: https://phabricator.services.mozilla.com/D120157
2021-07-22 18:54:27 +00:00
Markus Stange
62acf5642b Bug 1721072 - Remove two unused props from ProfilerEventHandling. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120156
2021-07-22 18:54:27 +00:00
Markus Stange
b4656d87cd Bug 1721072 - Stop instantiating the ProfilerEventHandling component on about:profiling. r=canaltinova
This component now only does two things:
 1. It maintaings the redux state's recordingState property, which is only used
    by the RecordingButton component, which is only used in the devtools panel.
 2. It stops the profiler if it's still running when the component is unloaded.

about:profiling doesn't need those things to happen.

Differential Revision: https://phabricator.services.mozilla.com/D120155
2021-07-22 18:54:26 +00:00
Markus Stange
dfba4c541a Bug 1721072 - Move isSupportedPlatform to the store initialization action. r=canaltinova
This means that we don't need to mount the ProfilerEventHandling component to get this piece of information.

Differential Revision: https://phabricator.services.mozilla.com/D120154
2021-07-22 18:54:26 +00:00
Markus Stange
cee8a0562e Bug 1721072 - Properly await gInit's completion. r=canaltinova
Now `gDevTools.showToolboxForTab` will only finish once `gInit` is done.
Without this, the test helper function `withDevToolsPanel` would sometimes
call the callback before `panelWin.gStore` was assigned, leading to test
failures. I noticed this when I added another `await` to `gInit`, which
affected ordering.

Differential Revision: https://phabricator.services.mozilla.com/D120153
2021-07-22 18:54:26 +00:00
Markus Stange
97971e6527 Bug 1721072 - Rename didRecordingUnexpectedlyStopped to recordingUnexpectedlyStopped. r=canaltinova
The old name had both 'did' and 'stopped' in it.

Differential Revision: https://phabricator.services.mozilla.com/D120152
2021-07-22 18:54:25 +00:00
Markus Stange
5a3ade7cda Bug 1721072 - Replace many bind calls with fat arrow functions stored in class properties. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120151
2021-07-22 18:54:25 +00:00
Markus Stange
42c94ac7da Bug 1721072 - Move openAboutProfiling out of the redux state. r=canaltinova
I think expressing this as a react prop feels more natural. This also stops it
from polluting the state type, which is shared between both the devtools panel
and about:profiling itself.

Unfortunately, there is a small hole in the typescript coverage: If I don't pass
any OwnProps to DevToolsPresetSelection, i.e. use DevToolsPresetSelection() in
the parent render method, then the type system does not detect the missing
onEditSettingsLinkClicked prop. But when I use DevToolsPresetSelection({}) (i.e.
pass an empty OwnProps object), then it does detect it.

Differential Revision: https://phabricator.services.mozilla.com/D120150
2021-07-22 18:54:24 +00:00
Markus Stange
12e176b9db Bug 1721072 - Rename receiveProfile to openProfilerAndDisplayProfile. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120149
2021-07-22 18:54:24 +00:00
Markus Stange
c260311323 Bug 1721072 - Move receiveProfile and symbol table functions out of the redux state, and use a react prop for it. r=canaltinova
This functionality is only needed by the devtools panel, so it doesn't make
sense to store it in the state object whose type is also used for about:profiling.
And now it's more like a component event listener, which looks more natural than
a callback function in the redux state.

Differential Revision: https://phabricator.services.mozilla.com/D120148
2021-07-22 18:54:24 +00:00
Markus Stange
7f318bd61b Bug 1721072 - Remove unnecessary callback to get the objdir list. r=canaltinova,gregtatum
This callback was always called directly afterwards. Calling it directly
slightly changes the order, but doesn't affect anything, and the call still
happens when the profile is obtained, and not before.

Differential Revision: https://phabricator.services.mozilla.com/D120147
2021-07-22 18:54:23 +00:00
Markus Stange
5d25ea5e25 Bug 1721072 - Add getRecordingSettingsFromPrefs and tweak prefPostfix handling. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D120146
2021-07-22 18:54:23 +00:00
Markus Stange
c69f0e040f Bug 1721072 - Remove recording settings translation functions. r=canaltinova
We were using the same type for settings with interval in milliseconds and
settings with interval in microseconds.
There was no type checking to ensure that we do the translation in the right places.
Now the interval is always in milliseconds, is documented as such in the type,
and the translation happens only where we read from and write to prefs.
The "preference-management" module is removed.

Differential Revision: https://phabricator.services.mozilla.com/D120145
2021-07-22 18:54:22 +00:00
Markus Stange
e397d00916 Bug 1721072 - Rename RecordingStateFromPreferences to RecordingSettings. r=canaltinova
This reduces confusion with the RecordingState type, which describes whether
we are currently recording.

Differential Revision: https://phabricator.services.mozilla.com/D120144
2021-07-22 18:54:22 +00:00
Markus Stange
66fa790d46 Bug 1721072 - Rename recordingPrefs to recordingSettings. r=canaltinova
Sometimes these settings come from a preset, and other times they come from Firefox about:config preferences.
Calling them settings removes the ambiguity with Firefox prefs.

Other parts of the codebase call these ProfilerInitParams.

Differential Revision: https://phabricator.services.mozilla.com/D120143
2021-07-22 18:54:22 +00:00
Brindusan Cristian
025b57bdaa Backed out changeset e141930afc4c (bug 1721291) for causing python checks failure in mach_commands.py.
CLOSED TREE
2021-07-22 21:59:05 +03:00
Andrew Osmond
a53b302d89 Bug 1719333 - Disable web-platform-tests on non-WR Linux. r=ahal,jmaher
In addition to disabling wpt on non-WR Linux, this patch also enables
these tests on CCOV/DevEdition to ensure we don't actually reduce
coverage.

This also ensures we run WPT tests on Windows QR at the appropriate
tier.

autoland

--- target_task_set@7d51fa43641c
+++ target_task_set@ao_ci_linux_wpt_fixup
+test-linux1804-64-asan-qr/opt-web-platform-tests-crashtest-e10s
+test-linux1804-64-asan-qr/opt-web-platform-tests-e10s
+test-linux1804-64-asan-qr/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64-asan/opt-web-platform-tests-crashtest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-crashtest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-e10s
-test-linux1804-64-asan/opt-web-platform-tests-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-print-reftest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-print-reftest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-reftest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-reftest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-headless-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-headless-fis-e10s
+test-linux1804-64-qr/debug-web-platform-tests-crashtest-e10s
+test-linux1804-64-qr/debug-web-platform-tests-crashtest-swr-e10s
+test-linux1804-64-qr/debug-web-platform-tests-e10s
+test-linux1804-64-qr/debug-web-platform-tests-swr-e10s
+test-linux1804-64-qr/debug-web-platform-tests-wdspec-e10s
+test-linux1804-64-qr/debug-web-platform-tests-wdspec-swr-e10s
+test-linux1804-64-qr/opt-web-platform-tests-crashtest-e10s
+test-linux1804-64-qr/opt-web-platform-tests-e10s
+test-linux1804-64-qr/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64/debug-web-platform-tests-crashtest-e10s
-test-linux1804-64/debug-web-platform-tests-e10s
-test-linux1804-64/debug-web-platform-tests-print-reftest-e10s
-test-linux1804-64/debug-web-platform-tests-reftest-e10s
-test-linux1804-64/debug-web-platform-tests-wdspec-e10s
-test-linux1804-64/opt-web-platform-tests-crashtest-e10s
-test-linux1804-64/opt-web-platform-tests-e10s
-test-linux1804-64/opt-web-platform-tests-print-reftest-e10s
-test-linux1804-64/opt-web-platform-tests-reftest-e10s
-test-linux1804-64/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64/opt-web-platform-tests-wdspec-headless-e10s
+test-windows10-32-qr/debug-web-platform-tests-crashtest-e10s
+test-windows10-32-qr/debug-web-platform-tests-e10s
+test-windows10-32-qr/opt-web-platform-tests-crashtest-e10s
+test-windows10-32-qr/opt-web-platform-tests-e10s
+test-windows10-64-qr/debug-web-platform-tests-crashtest-e10s
+test-windows10-64-qr/debug-web-platform-tests-crashtest-swr-e10s
+test-windows10-64-qr/debug-web-platform-tests-e10s
+test-windows10-64-qr/debug-web-platform-tests-swr-e10s
+test-windows10-64-qr/debug-web-platform-tests-wdspec-e10s
+test-windows10-64-qr/debug-web-platform-tests-wdspec-swr-e10s
+test-windows10-64-qr/opt-web-platform-tests-crashtest-e10s
+test-windows10-64-qr/opt-web-platform-tests-e10s
+test-windows10-64-qr/opt-web-platform-tests-wdspec-e10s

mozilla-central

--- target_task_set@7d51fa43641c
+++ target_task_set@ao_ci_linux_wpt_fixup
-test-linux1804-64-asan/opt-web-platform-tests-crashtest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-crashtest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-e10s
-test-linux1804-64-asan/opt-web-platform-tests-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-print-reftest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-print-reftest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-reftest-e10s
-test-linux1804-64-asan/opt-web-platform-tests-reftest-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-fis-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-headless-e10s
-test-linux1804-64-asan/opt-web-platform-tests-wdspec-headless-fis-e10s
+test-linux1804-64-ccov-qr/opt-web-platform-tests-crashtest-e10s
+test-linux1804-64-ccov-qr/opt-web-platform-tests-e10s
+test-linux1804-64-ccov-qr/opt-web-platform-tests-print-reftest-e10s
+test-linux1804-64-ccov-qr/opt-web-platform-tests-reftest-e10s
+test-linux1804-64-ccov-qr/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64-ccov/opt-web-platform-tests-crashtest-e10s
-test-linux1804-64-ccov/opt-web-platform-tests-e10s
-test-linux1804-64-ccov/opt-web-platform-tests-print-reftest-e10s
-test-linux1804-64-ccov/opt-web-platform-tests-reftest-e10s
-test-linux1804-64-ccov/opt-web-platform-tests-wdspec-e10s
+test-linux1804-64-qr/debug-web-platform-tests-wdspec-swr-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-crashtest-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-print-reftest-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-reftest-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-wdspec-e10s
-test-linux1804-64-shippable/opt-web-platform-tests-wdspec-headless-e10s
-test-linux1804-64/debug-web-platform-tests-crashtest-e10s
-test-linux1804-64/debug-web-platform-tests-e10s
-test-linux1804-64/debug-web-platform-tests-print-reftest-e10s
-test-linux1804-64/debug-web-platform-tests-reftest-e10s
-test-linux1804-64/debug-web-platform-tests-wdspec-e10s
+test-windows10-64-qr/debug-web-platform-tests-wdspec-swr-e10s

Differential Revision: https://phabricator.services.mozilla.com/D119202
2021-07-22 18:41:25 +00:00
Steve Fink
45f13cfa7c Bug 1721291 - Report jsapi-tests failures with more than just the result code. r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D120294
2021-07-22 18:34:18 +00:00
Morgan Reschenberg
a58920e618 Bug 1694571: Replace AccessibleOrProxy's with Accessible's r=Jamie
Differential Revision: https://phabricator.services.mozilla.com/D117927
2021-07-22 17:58:49 +00:00