From 89a2a99692407190f73cba4d34264df32010fd30 Mon Sep 17 00:00:00 2001
From: Kash Shampur <kshampur@mozilla.com>
Date: Fri, 2 Sep 2022 12:34:22 +0000
Subject: [PATCH] Bug 1788026 - Run browsertime tests nightly on the
 mozilla-beta branch. r=sparky, a=test-only

There will be changes in mozilla-beta that will increase the frequency of pushes. This will increase the load on our android devices so this patch will limit the amount of tests to be run nightly rather than on every push.

Differential Revision: https://phabricator.services.mozilla.com/D156198
---
 .cron.yml                                   |  11 +
 taskcluster/ci/test/browsertime-mobile.yml  |  24 +-
 taskcluster/gecko_taskgraph/target_tasks.py |  39 ++
 testing/perfdocs/generated/raptor.rst       | 666 ++++++++++----------
 4 files changed, 395 insertions(+), 345 deletions(-)

diff --git a/.cron.yml b/.cron.yml
index 33e1af2c4f1d4..a100d907e7a05 100644
--- a/.cron.yml
+++ b/.cron.yml
@@ -231,6 +231,17 @@ jobs:
           - {weekday: 'Monday', hour: 8, minute: 0}
           - {weekday: 'Thursday', hour: 8, minute: 0}
 
+    - name: nightly-beta-perf
+      job:
+          type: decision-task
+          treeherder-symbol: n-perf
+          target-tasks-method: nightly_beta_perf
+          include-push-tasks: true
+      run-on-projects:
+          - mozilla-beta
+      when:
+          - {hour: 16, minute: 0}
+
     - name: raptor-tp6m
       job:
           type: decision-task
diff --git a/taskcluster/ci/test/browsertime-mobile.yml b/taskcluster/ci/test/browsertime-mobile.yml
index f16ecbcd82d82..d3548ff7aca7b 100644
--- a/taskcluster/ci/test/browsertime-mobile.yml
+++ b/taskcluster/ci/test/browsertime-mobile.yml
@@ -106,8 +106,8 @@ browsertime-tp6m:
         by-app:
             geckoview:
                 by-test-platform:
-                    android-hw-(g5|a51).*shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
-                    android-hw-p2.*aarch64-shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
+                    android-hw-(g5|a51).*shippable-qr.*: [trunk]
+                    android-hw-p2.*aarch64-shippable-qr.*: [trunk]
                     default: []
             default: []
 
@@ -129,8 +129,8 @@ browsertime-tp6m-essential:
         by-app:
             geckoview:
                 by-test-platform:
-                    android-hw-(g5|a51).*shippable.*: [trunk, mozilla-beta, mozilla-release]
-                    android-hw-p2.*aarch64-shippable.*: [trunk, mozilla-beta, mozilla-release]
+                    android-hw-(g5|a51).*shippable.*: [trunk]
+                    android-hw-p2.*aarch64-shippable.*: [trunk]
                     default: []
             default: []
     tier:
@@ -187,8 +187,8 @@ browsertime-youtube-playback-mobile:
         by-app:
             geckoview:
                 by-test-platform:
-                    android-hw-(g5|a51).*shippable.*: [mozilla-central, mozilla-release]
-                    android-hw-p2.*aarch64-shippable.*: [mozilla-central, mozilla-release]
+                    android-hw-(g5|a51).*shippable.*: [mozilla-central]
+                    android-hw-p2.*aarch64-shippable.*: [mozilla-central]
                     default: []
             default: []
     max-run-time: 3600
@@ -293,12 +293,12 @@ browsertime-speedometer-mobile:
             refbrow: []
             geckoview:
                 by-test-platform:
-                    android-hw-(g5|a51).*shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
-                    android-hw-p2.*aarch64-shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
+                    android-hw-(g5|a51).*shippable-qr.*: [trunk]
+                    android-hw-p2.*aarch64-shippable-qr.*: [trunk]
                     default: []
             default:
                 by-test-platform:
-                    android-hw-p2-.*aarch64-shippable-qr.*: [mozilla-central, mozilla-release]
+                    android-hw-p2-.*aarch64-shippable-qr.*: [mozilla-central]
                     default: []
     treeherder-symbol: Btime(sp)
     mozharness:
@@ -316,12 +316,12 @@ browsertime-unity-webgl-mobile:
             refbrow: []
             geckoview:
                 by-test-platform:
-                    android-hw-(g5|a51).*shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
-                    android-hw-p2.*aarch64-shippable-qr.*: [trunk, mozilla-beta, mozilla-release]
+                    android-hw-(g5|a51).*shippable-qr.*: [trunk]
+                    android-hw-p2.*aarch64-shippable-qr.*: [trunk]
                     default: []
             default:
                 by-test-platform:
-                    android-hw-p2-.*aarch64-shippable-qr.*: [mozilla-central, mozilla-release]
+                    android-hw-p2-.*aarch64-shippable-qr.*: [mozilla-central]
                     default: []
     max-run-time:
         by-test-platform:
diff --git a/taskcluster/gecko_taskgraph/target_tasks.py b/taskcluster/gecko_taskgraph/target_tasks.py
index 40e4de4a00900..fb3c67b840eff 100644
--- a/taskcluster/gecko_taskgraph/target_tasks.py
+++ b/taskcluster/gecko_taskgraph/target_tasks.py
@@ -1157,6 +1157,45 @@ def target_tasks_nothing(full_task_graph, parameters, graph_config):
     return []
 
 
+@_target_task("nightly_beta_perf")
+def target_tasks_nightly_beta_perf(full_task_graph, parameters, graph_config):
+    """
+    Select performance tests on the beta branch to be run nightly
+    """
+
+    def filter(task):
+        platform = task.attributes.get("test_platform")
+        attributes = task.attributes
+        try_name = attributes.get("raptor_try_name")
+
+        if attributes.get("unittest_suite") != "raptor":
+            return False
+
+        if platform and accept_raptor_android_build(platform):
+            # Select browsertime & geckoview specific tests
+            if "browsertime" and "geckoview" in try_name:
+                if "g5" in platform:
+                    return False
+                if "power" in try_name:
+                    return False
+                if "cpu" in try_name:
+                    return False
+                if "profiling" in try_name:
+                    return False
+                if "-live" in try_name:
+                    return False
+                if "speedometer" in try_name:
+                    return True
+                if "webgl" in try_name:
+                    return True
+                if "tp6m" in try_name:
+                    return True
+
+        return False
+
+    return [l for l, t in full_task_graph.tasks.items() if filter(t)]
+
+
 @_target_task("raptor_tp6m")
 def target_tasks_raptor_tp6m(full_task_graph, parameters, graph_config):
     """
diff --git a/testing/perfdocs/generated/raptor.rst b/testing/perfdocs/generated/raptor.rst
index 51fa92e184dda..ee77cfe5fc11a 100644
--- a/testing/perfdocs/generated/raptor.rst
+++ b/testing/perfdocs/generated/raptor.rst
@@ -1406,8 +1406,8 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-speedometer-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-g5-7-0-arm7-qr/opt**
@@ -1505,18 +1505,18 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-speedometer-mobile-chrome-m-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-speedometer-mobile-fenix-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-speedometer-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-arm7-qr/opt**
@@ -1814,8 +1814,8 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-speedometer-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-g5-7-0-arm7-qr/opt**
@@ -1913,18 +1913,18 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-speedometer-mobile-chrome-m-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-speedometer-mobile-fenix-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-speedometer-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-arm7-qr/opt**
@@ -2752,8 +2752,8 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-unity-webgl-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-android-aarch64-qr/opt**
@@ -2789,18 +2789,18 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-unity-webgl-mobile-chrome-m-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-unity-webgl-mobile-fenix-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-unity-webgl-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-arm7-qr/opt**
@@ -3077,8 +3077,8 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-unity-webgl-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-android-aarch64-qr/opt**
@@ -3114,18 +3114,18 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-unity-webgl-mobile-chrome-m-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-unity-webgl-mobile-fenix-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
       * - **browsertime-unity-webgl-mobile-geckoview-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
 
 
    .. list-table:: **test-android-hw-p2-8-0-arm7-qr/opt**
@@ -4716,7 +4716,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-mobile-geckoview-youtube-playback-h264-sfr-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
 
 
@@ -4758,7 +4758,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-mobile-geckoview-youtube-playback-h264-sfr-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
 
 
@@ -4995,7 +4995,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-mobile-geckoview-youtube-playback-hfr-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
 
 
@@ -5037,7 +5037,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-mobile-geckoview-youtube-playback-hfr-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
 
 
@@ -5361,7 +5361,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr
       * - **browsertime-mobile-geckoview-youtube-playback-vp9-sfr-nofis**
         - ✅
         - ❌
-        - ✅
+        - ❌
         - ❌
 
 
@@ -6440,13 +6440,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-amazon**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-amazon-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-amazon-nofis**
         - ❌
         - ❌
@@ -6547,13 +6547,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-amazon**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-amazon-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-amazon-nofis**
         - ❌
         - ❌
@@ -7597,13 +7597,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -7704,13 +7704,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -8466,13 +8466,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-essential-geckoview-espn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-espn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-espn**
         - ❌
         - ❌
@@ -8573,13 +8573,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-essential-geckoview-espn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-espn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-espn**
         - ❌
         - ❌
@@ -9316,13 +9316,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-essential-geckoview-facebook**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-facebook-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-facebook**
         - ❌
         - ❌
@@ -9423,13 +9423,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-essential-geckoview-facebook**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-facebook-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-facebook**
         - ❌
         - ❌
@@ -11552,13 +11552,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-imdb**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-imdb-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-imdb-nofis**
         - ❌
         - ❌
@@ -11659,13 +11659,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-imdb**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-imdb-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-imdb-nofis**
         - ❌
         - ❌
@@ -12422,13 +12422,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-instagram**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-instagram-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-instagram-nofis**
         - ❌
         - ❌
@@ -12529,13 +12529,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-instagram**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-instagram-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-instagram-nofis**
         - ❌
         - ❌
@@ -15148,13 +15148,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-reddit**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-reddit-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-reddit-nofis**
         - ❌
         - ❌
@@ -15255,13 +15255,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-reddit**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-reddit-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-reddit-nofis**
         - ❌
         - ❌
@@ -16799,13 +16799,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-wikipedia**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-wikipedia-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis**
         - ❌
         - ❌
@@ -16906,13 +16906,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-wikipedia**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-wikipedia-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis**
         - ❌
         - ❌
@@ -17747,13 +17747,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-youtube**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-youtube-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-youtube-nofis**
         - ❌
         - ❌
@@ -17854,13 +17854,13 @@ Tests for page-load performance. The links direct to the actual websites that ar
       * - **browsertime-tp6m-geckoview-youtube**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-youtube-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-youtube-nofis**
         - ❌
         - ❌
@@ -19492,13 +19492,13 @@ A set of test pages that are run as live sites instead of recorded versions. The
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -19599,13 +19599,13 @@ A set of test pages that are run as live sites instead of recorded versions. The
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -20081,13 +20081,13 @@ A set of test pages that are run as live sites instead of recorded versions. The
       * - **browsertime-tp6m-geckoview-cnn-ampstories**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis**
         - ❌
         - ❌
@@ -20188,13 +20188,13 @@ A set of test pages that are run as live sites instead of recorded versions. The
       * - **browsertime-tp6m-geckoview-cnn-ampstories**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis**
         - ❌
         - ❌
@@ -22859,13 +22859,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-allrecipes**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-allrecipes-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-allrecipes**
         - ❌
         - ❌
@@ -22966,13 +22966,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-allrecipes**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-allrecipes-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-allrecipes**
         - ❌
         - ❌
@@ -23203,13 +23203,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-amazon**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-amazon-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-amazon-nofis**
         - ❌
         - ❌
@@ -23310,13 +23310,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-amazon**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-amazon-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-amazon-nofis**
         - ❌
         - ❌
@@ -23850,13 +23850,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-amazon-search**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-amazon-search-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-amazon-search**
         - ❌
         - ❌
@@ -23957,13 +23957,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-amazon-search**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-amazon-search-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-amazon-search**
         - ❌
         - ❌
@@ -24194,13 +24194,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-bing**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-bing-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-bing-nofis**
         - ❌
         - ❌
@@ -24301,13 +24301,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-bing**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-bing-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-bing-nofis**
         - ❌
         - ❌
@@ -24538,13 +24538,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-bing-search-restaurants**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-bing-search-restaurants-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-bing-search-restaurants-nofis**
         - ❌
         - ❌
@@ -24645,13 +24645,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-bing-search-restaurants**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-bing-search-restaurants-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-bing-search-restaurants-nofis**
         - ❌
         - ❌
@@ -24882,13 +24882,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-booking**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-booking-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-booking-nofis**
         - ❌
         - ❌
@@ -24989,13 +24989,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-booking**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-booking-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-booking-nofis**
         - ❌
         - ❌
@@ -25226,13 +25226,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -25333,13 +25333,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-cnn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-nofis**
         - ❌
         - ❌
@@ -25818,13 +25818,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-cnn-ampstories**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis**
         - ❌
         - ❌
@@ -25925,13 +25925,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-cnn-ampstories**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis**
         - ❌
         - ❌
@@ -26162,13 +26162,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-dailymail**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-dailymail-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-dailymail-nofis**
         - ❌
         - ❌
@@ -26269,13 +26269,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-dailymail**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-dailymail-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-dailymail-nofis**
         - ❌
         - ❌
@@ -26506,13 +26506,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-nofis**
         - ❌
         - ❌
@@ -26613,13 +26613,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-nofis**
         - ❌
         - ❌
@@ -26850,13 +26850,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-search-nofis**
         - ❌
         - ❌
@@ -26957,13 +26957,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-search-nofis**
         - ❌
         - ❌
@@ -27194,13 +27194,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-espn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-espn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-espn**
         - ❌
         - ❌
@@ -27301,13 +27301,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-espn**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-espn-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-espn**
         - ❌
         - ❌
@@ -27707,13 +27707,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-facebook**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-facebook-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-facebook**
         - ❌
         - ❌
@@ -27814,13 +27814,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-facebook**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-facebook-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-facebook**
         - ❌
         - ❌
@@ -28299,13 +28299,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-facebook-cristiano**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-facebook-cristiano-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-facebook-cristiano-nofis**
         - ❌
         - ❌
@@ -28406,13 +28406,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-facebook-cristiano**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-facebook-cristiano-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-facebook-cristiano-nofis**
         - ❌
         - ❌
@@ -28644,13 +28644,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-google**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-google-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-google**
         - ❌
         - ❌
@@ -28751,13 +28751,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-google**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-google-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-google**
         - ❌
         - ❌
@@ -28988,13 +28988,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-google-maps**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-google-maps-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-google-maps-nofis**
         - ❌
         - ❌
@@ -29095,13 +29095,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-google-maps**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-google-maps-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-google-maps-nofis**
         - ❌
         - ❌
@@ -29333,13 +29333,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-google-search-restaurants**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-google-search-restaurants-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-google-search-restaurants-nofis**
         - ❌
         - ❌
@@ -29440,13 +29440,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-google-search-restaurants**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-google-search-restaurants-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-google-search-restaurants-nofis**
         - ❌
         - ❌
@@ -29677,13 +29677,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-imdb**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-imdb-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-imdb-nofis**
         - ❌
         - ❌
@@ -29784,13 +29784,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-imdb**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-imdb-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-imdb-nofis**
         - ❌
         - ❌
@@ -30270,13 +30270,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-instagram**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-instagram-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-instagram-nofis**
         - ❌
         - ❌
@@ -30377,13 +30377,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-instagram**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-instagram-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-instagram-nofis**
         - ❌
         - ❌
@@ -30822,13 +30822,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-microsoft-support**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-microsoft-support-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-microsoft-support**
         - ❌
         - ❌
@@ -30929,13 +30929,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-microsoft-support**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-microsoft-support-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-microsoft-support**
         - ❌
         - ❌
@@ -31166,13 +31166,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-reddit**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-reddit-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-reddit-nofis**
         - ❌
         - ❌
@@ -31273,13 +31273,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-reddit**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-reddit-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-reddit-nofis**
         - ❌
         - ❌
@@ -31748,13 +31748,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-sina**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-sina-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-refbrow-sina**
         - ❌
         - ❌
@@ -31830,13 +31830,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-sina**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-sina-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-refbrow-sina**
         - ❌
         - ❌
@@ -32027,13 +32027,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-stackoverflow**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-stackoverflow-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-stackoverflow-nofis**
         - ❌
         - ❌
@@ -32134,13 +32134,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-stackoverflow**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-stackoverflow-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-stackoverflow-nofis**
         - ❌
         - ❌
@@ -32371,13 +32371,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-web-de**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-web-de-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-web-de-nofis**
         - ❌
         - ❌
@@ -32478,13 +32478,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-web-de**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-web-de-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-web-de-nofis**
         - ❌
         - ❌
@@ -32715,13 +32715,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-wikipedia**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-wikipedia-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis**
         - ❌
         - ❌
@@ -32822,13 +32822,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-wikipedia**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-wikipedia-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis**
         - ❌
         - ❌
@@ -33347,13 +33347,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-youtube**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-youtube-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-youtube-nofis**
         - ❌
         - ❌
@@ -33454,13 +33454,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-geckoview-youtube**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-geckoview-youtube-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-live-chrome-m-youtube-nofis**
         - ❌
         - ❌
@@ -33944,13 +33944,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-youtube-watch**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-youtube-watch-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-youtube-watch**
         - ❌
         - ❌
@@ -34051,13 +34051,13 @@ Page-load performance test suite on Android. The links direct to the actual webs
       * - **browsertime-tp6m-essential-geckoview-youtube-watch**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-geckoview-youtube-watch-nofis**
         - ✅
         - ✅
-        - ✅
-        - ✅
+        - ❌
+        - ❌
       * - **browsertime-tp6m-essential-refbrow-youtube-watch**
         - ❌
         - ❌
-- 
GitLab