remove JPEG XL support

This has been targeted for removal in M110.
See also:
https://crbug.com/1178058#c183
https://groups.google.com/a/chromium.org/g/blink-dev/c/WjCKcBw219k/m/xX-NnWtTBQAJ

Bug: 1178058
Change-Id: I20178fece413de9ed4d441080943d26f6c6bbb69
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4081749
Reviewed-by: Scott Violet <sky@chromium.org>
Reviewed-by: Wan-Teh Chang <wtc@google.com>
Reviewed-by: Yoav Weiss <yoavweiss@chromium.org>
Owners-Override: Scott Violet <sky@chromium.org>
Commit-Queue: James Zern <jzern@google.com>
Cr-Commit-Position: refs/heads/main@{#1081645}
diff --git a/DEPS b/DEPS
index 5fcfab2..e7c9886 100644
--- a/DEPS
+++ b/DEPS
@@ -466,10 +466,6 @@
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling feed
   # and whatever else without interference from each other.
-  'libjxl_revision': '8001738dc9cd8dc6fa24cf75fefd08f909b2ac3c',
-  # Three lines of non-changing comments so that
-  # the commit queue can handle CLs rolling feed
-  # and whatever else without interference from each other.
   'highway_revision': '8ae5b88670fb918f815b717c7c13d38a9b0eb4bb',
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling ffmpeg
@@ -1098,9 +1094,6 @@
   'src/third_party/dawn':
     Var('dawn_git') + '/dawn.git' + '@' +  Var('dawn_revision'),
 
-  'src/third_party/libjxl/src':
-    Var('chromium_git') + '/external/github.com/libjxl/libjxl.git' + '@' + Var('libjxl_revision'),
-
   'src/third_party/highway/src':
     Var('chromium_git') + '/external/github.com/google/highway.git' + '@' + Var('highway_revision'),
 
diff --git a/build/linux/unbundle/libjxl.gn b/build/linux/unbundle/libjxl.gn
deleted file mode 100644
index 227f209..0000000
--- a/build/linux/unbundle/libjxl.gn
+++ /dev/null
@@ -1,34 +0,0 @@
-import("//build/config/linux/pkg_config.gni")
-import("//build/shim_headers.gni")
-
-pkg_config("system_libjxl") {
-  packages = [ "libjxl" ]
-}
-
-shim_headers("jxl_shim") {
-  root_path = "src/lib/include"
-  headers = [
-    "jxl/butteraugli.h",
-    "jxl/butteraugli_cxx.h",
-    "jxl/codestream_header.h",
-    "jxl/color_encoding.h",
-    "jxl/decode.h",
-    "jxl/decode_cxx.h",
-    "jxl/encode.h",
-    "jxl/encode_cxx.h",
-    "jxl/jxl_export.h",
-    "jxl/jxl_threads_export.h",
-    "jxl/memory_manager.h",
-    "jxl/parallel_runner.h",
-    "jxl/resizable_parallel_runner.h",
-    "jxl/resizable_parallel_runner_cxx.h",
-    "jxl/thread_parallel_runner.h",
-    "jxl/thread_parallel_runner_cxx.h",
-    "jxl/types.h",
-  ]
-}
-
-source_set("libjxl") {
-  deps = [ ":jxl_shim" ]
-  public_configs = [ ":system_libjxl" ]
-}
diff --git a/build/linux/unbundle/replace_gn_files.py b/build/linux/unbundle/replace_gn_files.py
index 589db41b..0483cd6 100755
--- a/build/linux/unbundle/replace_gn_files.py
+++ b/build/linux/unbundle/replace_gn_files.py
@@ -53,7 +53,6 @@
   'libdrm': 'third_party/libdrm/BUILD.gn',
   'libevent': 'third_party/libevent/BUILD.gn',
   'libjpeg': 'third_party/libjpeg.gni',
-  'libjxl' : 'third_party/libjxl/BUILD.gn',
   'libpng': 'third_party/libpng/BUILD.gn',
   'libvpx': 'third_party/libvpx/BUILD.gn',
   'libwebp': 'third_party/libwebp/BUILD.gn',
diff --git a/cc/base/devtools_instrumentation.cc b/cc/base/devtools_instrumentation.cc
index 0f5c4633..9e53639d 100644
--- a/cc/base/devtools_instrumentation.cc
+++ b/cc/base/devtools_instrumentation.cc
@@ -73,9 +73,6 @@
   auto duration = base::TimeTicks::Now() - start_time_;
   const char* histogram_name = nullptr;
   switch (image_type_) {
-    case ImageType::kJxl:
-      histogram_name = "Renderer4.ImageUploadTaskDurationUs.Jxl";
-      break;
     case ImageType::kAvif:
       histogram_name = "Renderer4.ImageUploadTaskDurationUs.Avif";
       break;
@@ -125,9 +122,6 @@
   auto duration = base::TimeTicks::Now() - start_time_;
   const char* histogram_name = nullptr;
   switch (image_type_) {
-    case ImageType::kJxl:
-      histogram_name = "Renderer4.ImageUploadTaskDurationUs.Jxl";
-      break;
     case ImageType::kAvif:
       histogram_name = "Renderer4.ImageDecodeTaskDurationUs.Avif";
       break;
diff --git a/cc/base/devtools_instrumentation.h b/cc/base/devtools_instrumentation.h
index aa063634..409a9106 100644
--- a/cc/base/devtools_instrumentation.h
+++ b/cc/base/devtools_instrumentation.h
@@ -72,7 +72,7 @@
 
 class CC_BASE_EXPORT ScopedImageTask {
  public:
-  enum ImageType { kJxl, kAvif, kBmp, kGif, kIco, kJpeg, kPng, kWebP, kOther };
+  enum ImageType { kAvif, kBmp, kGif, kIco, kJpeg, kPng, kWebP, kOther };
 
   explicit ScopedImageTask(ImageType image_type)
       : image_type_(image_type), start_time_(base::TimeTicks::Now()) {}
diff --git a/cc/paint/paint_image.h b/cc/paint/paint_image.h
index db81fbe..f412aa97 100644
--- a/cc/paint/paint_image.h
+++ b/cc/paint/paint_image.h
@@ -40,17 +40,7 @@
 class TextureBacking;
 using PaintRecord = PaintOpBuffer;
 
-enum class ImageType {
-  kPNG,
-  kJPEG,
-  kWEBP,
-  kGIF,
-  kICO,
-  kBMP,
-  kAVIF,
-  kJXL,
-  kInvalid
-};
+enum class ImageType { kPNG, kJPEG, kWEBP, kGIF, kICO, kBMP, kAVIF, kInvalid };
 
 enum class YUVSubsampling { k410, k411, k420, k422, k440, k444, kUnknown };
 
diff --git a/cc/tiles/image_decode_cache.h b/cc/tiles/image_decode_cache.h
index d04c6b9..82fdd543 100644
--- a/cc/tiles/image_decode_cache.h
+++ b/cc/tiles/image_decode_cache.h
@@ -84,8 +84,6 @@
     using ScopedImageType =
         devtools_instrumentation::ScopedImageDecodeTask::ImageType;
     switch (image_type) {
-      case ImageType::kJXL:
-        return ScopedImageType::kJxl;
       case ImageType::kAVIF:
         return ScopedImageType::kAvif;
       case ImageType::kBMP:
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index eec1356e..5a97c96 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -7791,12 +7791,6 @@
      FEATURE_VALUE_TYPE(download::features::kSmartSuggestionForLargeDownloads)},
 #endif  // BUILDFLAG(IS_ANDROID)
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-    {"enable-jxl", flag_descriptions::kEnableJXLName,
-     flag_descriptions::kEnableJXLDescription, kOsAll,
-     FEATURE_VALUE_TYPE(blink::features::kJXL)},
-#endif  // BUILDFLAG(ENABLE_JXL_DECODER)
-
 #if BUILDFLAG(IS_ANDROID)
     {"messages-for-android-ads-blocked",
      flag_descriptions::kMessagesForAndroidAdsBlockedName,
diff --git a/chrome/browser/flag-metadata.json b/chrome/browser/flag-metadata.json
index fdff9be..c9b87ad 100644
--- a/chrome/browser/flag-metadata.json
+++ b/chrome/browser/flag-metadata.json
@@ -2543,11 +2543,6 @@
     "expiry_milestone": -1
   },
   {
-    "name": "enable-jxl",
-    "owners": [ "eustas@chromium.org", "firsching", "sboukortt", "veluca" ],
-    "expiry_milestone": 115
-  },
-  {
     "name": "enable-keyboard-backlight-toggle",
     "owners": [ "rtinkoff" ],
     "expiry_milestone": 105
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
index 7e5db66..fadafb70 100644
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -6467,13 +6467,6 @@
     "rather than crashing. If enabled, DCHECKs will crash the calling process.";
 #endif  // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-const char kEnableJXLName[] = "Enable JXL image format";
-const char kEnableJXLDescription[] =
-    "Adds image decoding support for the JPEG XL image format. NOTE: JPEG XL "
-    "format will be removed in Chrome 110 release.";
-#endif  // BUILDFLAG(ENABLE_JXL_DECODER)
-
 #if BUILDFLAG(ENABLE_NACL)
 const char kNaclName[] = "Native Client";
 const char kNaclDescription[] =
diff --git a/chrome/browser/flag_descriptions.h b/chrome/browser/flag_descriptions.h
index c0cb0a2..6851c81 100644
--- a/chrome/browser/flag_descriptions.h
+++ b/chrome/browser/flag_descriptions.h
@@ -3747,11 +3747,6 @@
 extern const char kDcheckIsFatalDescription[];
 #endif  // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-extern const char kEnableJXLName[];
-extern const char kEnableJXLDescription[];
-#endif  // BUILDFLAG(ENABLE_JXL_DECODER)
-
 #if BUILDFLAG(ENABLE_NACL)
 extern const char kNaclName[];
 extern const char kNaclDescription[];
diff --git a/chrome/browser/net/chrome_accept_header_browsertest.cc b/chrome/browser/net/chrome_accept_header_browsertest.cc
index 78479d6..0aa76809 100644
--- a/chrome/browser/net/chrome_accept_header_browsertest.cc
+++ b/chrome/browser/net/chrome_accept_header_browsertest.cc
@@ -11,26 +11,18 @@
 #include "media/media_buildflags.h"
 #include "net/test/embedded_test_server/http_request.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 using ChromeAcceptHeaderTest = InProcessBrowserTest;
 
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
 namespace {
 std::string GetOptionalImageCodecs() {
   std::string result;
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  if (base::FeatureList::IsEnabled(blink::features::kJXL)) {
-    result.append("image/jxl,");
-  }
-#endif
-#if BUILDFLAG(ENABLE_AV1_DECODER)
   result.append("image/avif,");
-#endif
   return result;
 }
 }  // namespace
-#endif  // BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#endif  // BUILDFLAG(ENABLE_AV1_DECODER)
 
 IN_PROC_BROWSER_TEST_F(ChromeAcceptHeaderTest, Check) {
   net::EmbeddedTestServer server(net::EmbeddedTestServer::TYPE_HTTP);
@@ -63,7 +55,7 @@
   std::string expected_plugin_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9,image/"
       "webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9";
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   expected_plugin_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9," +
       GetOptionalImageCodecs() +
@@ -74,7 +66,7 @@
 
   std::string expected_favicon_accept_header =
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   expected_favicon_accept_header =
       GetOptionalImageCodecs() +
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
diff --git a/content/browser/network/accept_header_browsertest.cc b/content/browser/network/accept_header_browsertest.cc
index 85a6d424..5c70ceb 100644
--- a/content/browser/network/accept_header_browsertest.cc
+++ b/content/browser/network/accept_header_browsertest.cc
@@ -22,7 +22,6 @@
 #include "net/test/embedded_test_server/http_request.h"
 #include "ppapi/buildflags/buildflags.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 #include "third_party/blink/public/mojom/manifest/manifest.mojom.h"
 
 #if BUILDFLAG(ENABLE_PPAPI)
@@ -72,20 +71,13 @@
     return it->second;
   }
 
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   std::string GetOptionalImageCodecs() const {
     std::string result;
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-    if (base::FeatureList::IsEnabled(blink::features::kJXL)) {
-      result.append("image/jxl,");
-    }
-#endif
-#if BUILDFLAG(ENABLE_AV1_DECODER)
     result.append("image/avif,");
-#endif
     return result;
   }
-#endif  // BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#endif  // BUILDFLAG(ENABLE_AV1_DECODER)
 
  private:
   void Monitor(const net::test_server::HttpRequest& request) {
@@ -121,7 +113,7 @@
   std::string expected_main_frame_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,"
       "image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9";
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   expected_main_frame_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9," +
       GetOptionalImageCodecs() +
@@ -134,7 +126,7 @@
   std::string expected_sub_frame_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,"
       "image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9";
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   expected_sub_frame_accept_header =
       "text/html,application/xhtml+xml,application/xml;q=0.9," +
       GetOptionalImageCodecs() +
@@ -152,7 +144,7 @@
   // ResourceType::kImage
   std::string expected_image_accept_header =
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-#if BUILDFLAG(ENABLE_AV1_DECODER) || BUILDFLAG(ENABLE_JXL_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   expected_image_accept_header =
       GetOptionalImageCodecs() +
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
diff --git a/content/public/browser/frame_accept_header.cc b/content/public/browser/frame_accept_header.cc
index efda969..341a585 100644
--- a/content/public/browser/frame_accept_header.cc
+++ b/content/public/browser/frame_accept_header.cc
@@ -7,8 +7,6 @@
 #include "content/browser/web_package/signed_exchange_consts.h"
 #include "content/browser/web_package/signed_exchange_utils.h"
 #include "content/common/content_constants_internal.h"
-#include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 namespace content {
 
@@ -16,17 +14,6 @@
                                    BrowserContext* browser_context) {
   std::string header_value = kFrameAcceptHeaderValue;
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  // In case the buildflag and the runtime flag are enables, we insert
-  // "image/jxl," into the header value at the correct place.
-  if (base::FeatureList::IsEnabled(blink::features::kJXL)) {
-    std::string header_value_prefix = header_value.substr(0, 54);
-    std::string header_value_suffix = header_value.substr(54);
-    header_value = header_value_prefix;
-    header_value.append("image/jxl,");
-    header_value.append(header_value_suffix);
-  }
-#endif  // BUILDFLAG(ENABLE_JXL_DECODER)
   if (allow_sxg_responses &&
       content::signed_exchange_utils::IsSignedExchangeHandlingEnabled(
           browser_context)) {
diff --git a/net/base/mime_util.cc b/net/base/mime_util.cc
index 24305ef..fbf739f 100644
--- a/net/base/mime_util.cc
+++ b/net/base/mime_util.cc
@@ -163,7 +163,6 @@
     {"image/avif", "avif"},
     {"image/gif", "gif"},
     {"image/jpeg", "jpeg,jpg"},
-    {"image/jxl", "jxl"},
     {"image/png", "png"},
     {"image/apng", "png,apng"},
     {"image/svg+xml", "svg,svgz"},
@@ -667,7 +666,6 @@
                                                   "image/gif",
                                                   "image/ief",
                                                   "image/jpeg",
-                                                  "image/jxl",
                                                   "image/webp",
                                                   "image/pict",
                                                   "image/pipeg",
diff --git a/net/base/mime_util_unittest.cc b/net/base/mime_util_unittest.cc
index 14e7ce3..ea8a8f4c 100644
--- a/net/base/mime_util_unittest.cc
+++ b/net/base/mime_util_unittest.cc
@@ -39,7 +39,6 @@
       {FILE_PATH_LITERAL("webm"), "video/webm"},
       {FILE_PATH_LITERAL("weba"), "audio/webm"},
       {FILE_PATH_LITERAL("avif"), "image/avif"},
-      {FILE_PATH_LITERAL("jxl"), "image/jxl"},
       {FILE_PATH_LITERAL("epub"), "application/epub+zip"},
       {FILE_PATH_LITERAL("apk"), "application/vnd.android.package-archive"},
       {FILE_PATH_LITERAL("cer"), "application/x-x509-ca-cert"},
@@ -81,7 +80,6 @@
     {FILE_PATH_LITERAL("webm"), {"video/webm"}},
     {FILE_PATH_LITERAL("weba"), {"audio/webm"}},
     {FILE_PATH_LITERAL("avif"), {"image/avif"}},
-    {FILE_PATH_LITERAL("jxl"), {"image/jxl"}},
 #if BUILDFLAG(IS_CHROMEOS_ASH)
     // These are test cases for testing platform mime types on ChromeOS.
     {FILE_PATH_LITERAL("epub"), {"application/epub+zip"}},
@@ -440,7 +438,6 @@
       {"MeSsAge/*", 1, "eml"},
       {"message/", 0, nullptr, true},
       {"image/avif", 1, "avif"},
-      {"image/jxl", 1, "jxl"},
       {"image/bmp", 1, "bmp"},
       {"video/*", 6, "mp4"},
       {"video/*", 6, "mpeg"},
diff --git a/third_party/.gitignore b/third_party/.gitignore
index e571aef..45661ed 100644
--- a/third_party/.gitignore
+++ b/third_party/.gitignore
@@ -155,7 +155,6 @@
 /libipp/libipp
 /libjingle/source
 /libjpeg_turbo
-/libjxl/src
 /liblouis/src
 /libphonenumber/dist
 /libprotobuf-mutator/src
diff --git a/third_party/blink/common/features.cc b/third_party/blink/common/features.cc
index c176cf5..d2ddce2b 100644
--- a/third_party/blink/common/features.cc
+++ b/third_party/blink/common/features.cc
@@ -711,9 +711,6 @@
 const base::FeatureParam<int> kCacheCodeOnIdleDelayParam{&kCacheCodeOnIdle,
                                                          "delay-in-ms", 0};
 
-// Enables the JPEG XL Image File Format (JXL).
-BASE_FEATURE(kJXL, "JXL", base::FEATURE_DISABLED_BY_DEFAULT);
-
 // Make all pending 'display: auto' web fonts enter the swap or failure period
 // immediately before reaching the LCP time limit (~2500ms), so that web fonts
 // do not become a source of bad LCP.
diff --git a/third_party/blink/common/loader/network_utils.cc b/third_party/blink/common/loader/network_utils.cc
index 799c017..3a143f1 100644
--- a/third_party/blink/common/loader/network_utils.cc
+++ b/third_party/blink/common/loader/network_utils.cc
@@ -9,7 +9,6 @@
 #include "services/network/public/cpp/constants.h"
 #include "services/network/public/mojom/fetch_api.mojom.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 namespace blink {
 namespace network_utils {
@@ -34,20 +33,7 @@
 }
 
 const char* ImageAcceptHeader() {
-#if BUILDFLAG(ENABLE_JXL_DECODER) && BUILDFLAG(ENABLE_AV1_DECODER)
-  if (base::FeatureList::IsEnabled(blink::features::kJXL)) {
-    return "image/jxl,image/avif,image/webp,image/apng,image/svg+xml,image/*,*/"
-           "*;q=0.8";
-  } else {
-    return "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-  }
-#elif BUILDFLAG(ENABLE_JXL_DECODER)
-  if (base::FeatureList::IsEnabled(blink::features::kJXL)) {
-    return "image/jxl,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-  } else {
-    return "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-  }
-#elif BUILDFLAG(ENABLE_AV1_DECODER)
+#if BUILDFLAG(ENABLE_AV1_DECODER)
   return "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
 #else
   return "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
diff --git a/third_party/blink/common/mime_util/mime_util.cc b/third_party/blink/common/mime_util/mime_util.cc
index a3a7b9e4..f49cf1f 100644
--- a/third_party/blink/common/mime_util/mime_util.cc
+++ b/third_party/blink/common/mime_util/mime_util.cc
@@ -13,7 +13,6 @@
 #include "media/media_buildflags.h"
 #include "net/base/mime_util.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 #if !BUILDFLAG(IS_IOS)
 // iOS doesn't use and must not depend on //media
@@ -143,12 +142,6 @@
     non_image_types_.insert(type);
   for (const char* type : kSupportedImageTypes)
     image_types_.insert(type);
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  // TODO(firsching): Add "image/jxl" to the kSupportedImageTypes array when the
-  // JXL feature is shipped.
-  if (base::FeatureList::IsEnabled(features::kJXL))
-    image_types_.insert("image/jxl");
-#endif
   for (const char* type : kUnsupportedTextTypes)
     unsupported_text_types_.insert(type);
   for (const char* type : kSupportedJavascriptTypes) {
diff --git a/third_party/blink/common/mime_util/mime_util_unittest.cc b/third_party/blink/common/mime_util/mime_util_unittest.cc
index 50541a5..e37166c 100644
--- a/third_party/blink/common/mime_util/mime_util_unittest.cc
+++ b/third_party/blink/common/mime_util/mime_util_unittest.cc
@@ -9,7 +9,6 @@
 #include "net/base/mime_util.h"
 #include "testing/gtest/include/gtest/gtest.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 namespace blink {
 
@@ -19,12 +18,7 @@
 
   EXPECT_TRUE(IsSupportedImageMimeType("image/jpeg"));
   EXPECT_TRUE(IsSupportedImageMimeType("Image/JPEG"));
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  EXPECT_EQ(IsSupportedImageMimeType("image/jxl"),
-            base::FeatureList::IsEnabled(features::kJXL));
-#else
   EXPECT_FALSE(IsSupportedImageMimeType("image/jxl"));
-#endif
   EXPECT_EQ(IsSupportedImageMimeType("image/avif"),
             BUILDFLAG(ENABLE_AV1_DECODER));
   EXPECT_FALSE(IsSupportedImageMimeType("image/lolcat"));
diff --git a/third_party/blink/public/common/BUILD.gn b/third_party/blink/public/common/BUILD.gn
index 7983e70..2c566f13 100644
--- a/third_party/blink/public/common/BUILD.gn
+++ b/third_party/blink/public/common/BUILD.gn
@@ -100,10 +100,7 @@
 
 buildflag_header("buildflags") {
   header = "buildflags.h"
-  flags = [
-    "RTC_USE_H264=$rtc_use_h264",
-    "ENABLE_JXL_DECODER=$enable_jxl_decoder",
-  ]
+  flags = [ "RTC_USE_H264=$rtc_use_h264" ]
 }
 
 source_set("common_export") {
diff --git a/third_party/blink/public/common/features.h b/third_party/blink/public/common/features.h
index b5fc94715..d14445d 100644
--- a/third_party/blink/public/common/features.h
+++ b/third_party/blink/public/common/features.h
@@ -379,8 +379,6 @@
 BLINK_COMMON_EXPORT extern const base::FeatureParam<std::string>
     kBackgroundTracingPerformanceMark_AllowList;
 
-BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kJXL);
-
 // Main controls for ad serving API features.
 //
 // Backend storage + kill switch for Interest Group API origin trials.
diff --git a/third_party/blink/public/devtools_protocol/browser_protocol.pdl b/third_party/blink/public/devtools_protocol/browser_protocol.pdl
index d6b75aa..9bd2979 100644
--- a/third_party/blink/public/devtools_protocol/browser_protocol.pdl
+++ b/third_party/blink/public/devtools_protocol/browser_protocol.pdl
@@ -3897,7 +3897,6 @@
   experimental type DisabledImageType extends string
     enum
       avif
-      jxl
       webp
 
   experimental command setDisabledImageTypes
diff --git a/third_party/blink/public/public_features.gni b/third_party/blink/public/public_features.gni
index ef7537d..1d0dd0f3 100644
--- a/third_party/blink/public/public_features.gni
+++ b/third_party/blink/public/public_features.gni
@@ -4,11 +4,6 @@
 
 import("//build/config/ui.gni")
 
-declare_args() {
-  # If true, adds support for JPEG XL image decoding.
-  enable_jxl_decoder = !is_ios
-}
-
 # Unhandled Tap enable means Contextual Search aka Touch to Search.
 # TODO(donnd): remove all unhandled-tap handling after the Long-press experiment
 #              is fully launched.
diff --git a/third_party/blink/renderer/core/inspector/inspector_emulation_agent.cc b/third_party/blink/renderer/core/inspector/inspector_emulation_agent.cc
index 3a952f3..3c73d677 100644
--- a/third_party/blink/renderer/core/inspector/inspector_emulation_agent.cc
+++ b/third_party/blink/renderer/core/inspector/inspector_emulation_agent.cc
@@ -499,10 +499,10 @@
   String header(network_utils::ImageAcceptHeader());
   for (String type : *disabled_image_types) {
     // The header string is expected to be like
-    // `image/jxl,image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8`
+    // `image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8`
     // and is expected to be always ending with `image/*,*/*;q=xxx`, therefore,
-    // to remove a type we replace `image/x,` with empty string. Only webp, avif
-    // and jxl types can be disabled.
+    // to remove a type we replace `image/x,` with empty string. Only webp and
+    // avif types can be disabled.
     header.Replace(String(type + ","), "");
   }
   return AtomicString(header);
@@ -842,7 +842,6 @@
   namespace DisabledImageTypeEnum = protocol::Emulation::DisabledImageTypeEnum;
   for (protocol::Emulation::DisabledImageType type : *disabled_types) {
     if (DisabledImageTypeEnum::Avif == type ||
-        DisabledImageTypeEnum::Jxl == type ||
         DisabledImageTypeEnum::Webp == type) {
       disabled_image_types_.Set(prefix + type, true);
       continue;
diff --git a/third_party/blink/renderer/core/inspector/inspector_emulation_agent_test.cc b/third_party/blink/renderer/core/inspector/inspector_emulation_agent_test.cc
index 3c85c14..bc6e9a1 100644
--- a/third_party/blink/renderer/core/inspector/inspector_emulation_agent_test.cc
+++ b/third_party/blink/renderer/core/inspector/inspector_emulation_agent_test.cc
@@ -7,7 +7,6 @@
 #include "media/media_buildflags.h"
 #include "testing/gtest/include/gtest/gtest.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 
 namespace blink {
 
@@ -23,8 +22,6 @@
       "image/apng,image/svg+xml,image/*,*/*;q=0.8";
   String expected_no_avif =
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-  String expected_no_jxl =
-      "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
 #else
   String expected_default =
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
@@ -33,38 +30,8 @@
       "image/apng,image/svg+xml,image/*,*/*;q=0.8";
   String expected_no_avif =
       "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-  String expected_no_jxl =
-      "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
 #endif
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  bool jxl_enabled = base::FeatureList::IsEnabled(features::kJXL);
-  if (jxl_enabled) {
-#if BUILDFLAG(ENABLE_AV1_DECODER)
-    expected_default =
-        "image/jxl,image/avif,image/webp,image/apng,image/svg+xml,image/*,*/"
-        "*;q=0.8";
-    expected_no_webp =
-        "image/jxl,image/avif,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_webp_and_avif =
-        "image/jxl,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_avif =
-        "image/jxl,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_jxl =
-        "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-#else   // BUILDFLAG(ENABLE_AV1_DECODER)
-    expected_default =
-        "image/jxl,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_webp = "image/jxl,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_webp_and_avif =
-        "image/jxl,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_avif =
-        "image/jxl,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-    expected_no_jxl = "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
-#endif  // BUILDFLAG(ENABLE_AV1_DECODER)
-  }
-#endif  // BUILDFLAG(ENABLE_JXL_DECODER)
-
   HashSet<String> disabled_types;
   EXPECT_EQ(InspectorEmulationAgent::OverrideAcceptImageHeader(&disabled_types),
             expected_default);
@@ -77,10 +44,6 @@
   disabled_types.erase("image/webp");
   EXPECT_EQ(InspectorEmulationAgent::OverrideAcceptImageHeader(&disabled_types),
             expected_no_avif);
-  disabled_types.erase("image/avif");
-  disabled_types.insert("image/jxl");
-  EXPECT_EQ(InspectorEmulationAgent::OverrideAcceptImageHeader(&disabled_types),
-            expected_no_jxl);
 }
 
 }  // namespace blink
diff --git a/third_party/blink/renderer/modules/webcodecs/fuzzer_seed_corpus/generate_image_corpus.py b/third_party/blink/renderer/modules/webcodecs/fuzzer_seed_corpus/generate_image_corpus.py
index 81625856..681a2fc5 100644
--- a/third_party/blink/renderer/modules/webcodecs/fuzzer_seed_corpus/generate_image_corpus.py
+++ b/third_party/blink/renderer/modules/webcodecs/fuzzer_seed_corpus/generate_image_corpus.py
@@ -32,7 +32,6 @@
     "ico": "image/x-icon",
     "bmp": "image/bmp",
     "jpg": "image/jpeg",
-    "jxl": "image/jxl",
     "gif": "image/gif",
     "cur": "image/x-icon",
     "webp": "image/webp",
diff --git a/third_party/blink/renderer/modules/webcodecs/image_decoder_fuzzer.cc b/third_party/blink/renderer/modules/webcodecs/image_decoder_fuzzer.cc
index 6428d45e..87c6131 100644
--- a/third_party/blink/renderer/modules/webcodecs/image_decoder_fuzzer.cc
+++ b/third_party/blink/renderer/modules/webcodecs/image_decoder_fuzzer.cc
@@ -3,10 +3,8 @@
 // found in the LICENSE file.
 
 #include "base/run_loop.h"
-#include "base/test/scoped_feature_list.h"
 #include "testing/gtest/include/gtest/gtest.h"
 #include "testing/libfuzzer/proto/lpm_interface.h"
-#include "third_party/blink/public/common/features.h"
 #include "third_party/blink/renderer/bindings/core/v8/to_v8_traits.h"
 #include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
 #include "third_party/blink/renderer/bindings/core/v8/v8_union_arraybufferallowshared_arraybufferviewallowshared_readablestream.h"
@@ -90,9 +88,6 @@
   // Request a full GC upon returning.
   auto scoped_gc = MakeScopedGarbageCollectionRequest();
 
-  base::test::ScopedFeatureList scoped_feature_list;
-  scoped_feature_list.InitAndEnableFeature(features::kJXL);
-
   //
   // NOTE: GC objects that need to survive iterations of the loop below
   // must be Persistent<>!
diff --git a/third_party/blink/renderer/platform/BUILD.gn b/third_party/blink/renderer/platform/BUILD.gn
index 11a2294..29a7eb3 100644
--- a/third_party/blink/renderer/platform/BUILD.gn
+++ b/third_party/blink/renderer/platform/BUILD.gn
@@ -1810,15 +1810,6 @@
     deps += [ "//third_party/libavif" ]
   }
 
-  if (enable_jxl_decoder) {
-    sources += [
-      "image-decoders/jxl/jxl_image_decoder.cc",
-      "image-decoders/jxl/jxl_image_decoder.h",
-    ]
-
-    deps += [ "//third_party/libjxl:libjxl" ]
-  }
-
   if (current_cpu == "x86" || current_cpu == "x64") {
     deps += [ ":blink_x86_avx" ]
     sources += [ "audio/cpu/x86/audio_delay_dsp_kernel_sse2.cc" ]
@@ -2258,10 +2249,6 @@
     sources += [ "image-decoders/avif/avif_image_decoder_test.cc" ]
   }
 
-  if (enable_jxl_decoder) {
-    sources += [ "image-decoders/jxl/jxl_image_decoder_test.cc" ]
-  }
-
   sources += [ "testing/run_all_tests.cc" ]
 
   configs += [
@@ -2303,7 +2290,6 @@
     "//third_party/blink/renderer/platform/scheduler:unit_tests",
     "//third_party/blink/renderer/platform/wtf",
     "//third_party/libavif:libavif",
-    "//third_party/libjxl:libjxl",
     "//third_party/libyuv",
     "//third_party/webrtc/api/task_queue:task_queue_test",
     "//third_party/webrtc_overrides:metronome_like_task_queue_test",
diff --git a/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.cc b/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.cc
index f696d02a..e3d51af 100644
--- a/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.cc
+++ b/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.cc
@@ -6,6 +6,7 @@
 
 #include "base/metrics/histogram_base.h"
 #include "base/metrics/histogram_macros.h"
+#include "base/notreached.h"
 #include "base/numerics/safe_conversions.h"
 #include "media/media_buildflags.h"
 #include "third_party/blink/public/common/buildflags.h"
@@ -43,10 +44,6 @@
   if (type == "avif")
     return BitmapImageMetrics::DecodedImageType::kAVIF;
 #endif
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  if (type == "jxl")
-    return BitmapImageMetrics::DecodedImageType::kJXL;
-#endif
   return BitmapImageMetrics::DecodedImageType::kUnknown;
 }
 
@@ -118,12 +115,8 @@
                             elapsed);
       }
       break;
-    case BitmapImageMetrics::DecodedImageType::kJXL:
-      UMA_HISTOGRAM_TIMES("Blink.ImageDecoders.Jxl.EveryDecode.Time", elapsed);
-      if (first) {
-        UMA_HISTOGRAM_TIMES("Blink.ImageDecoders.Jxl.FirstDecode.Time",
-                            elapsed);
-      }
+    case BitmapImageMetrics::DecodedImageType::kREMOVED_JXL:
+      NOTREACHED();
       break;
   }
 }
diff --git a/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.h b/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.h
index 331bddb..22ec3c5 100644
--- a/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.h
+++ b/third_party/blink/renderer/platform/graphics/bitmap_image_metrics.h
@@ -35,8 +35,8 @@
     kICO = 5,
     kBMP = 6,
     kAVIF = 7,
-    kJXL = 8,
-    kMaxValue = kJXL,
+    kREMOVED_JXL = 8,
+    kMaxValue = kREMOVED_JXL,
   };
 
   // Categories for the JPEG color space histogram. Synced with 'JpegColorSpace'
diff --git a/third_party/blink/renderer/platform/image-decoders/image_decoder.cc b/third_party/blink/renderer/platform/image-decoders/image_decoder.cc
index 6dc18a3f..b1ba113 100644
--- a/third_party/blink/renderer/platform/image-decoders/image_decoder.cc
+++ b/third_party/blink/renderer/platform/image-decoders/image_decoder.cc
@@ -30,7 +30,6 @@
 #include "media/media_buildflags.h"
 #include "skia/ext/cicp.h"
 #include "third_party/blink/public/common/buildflags.h"
-#include "third_party/blink/public/common/features.h"
 #include "third_party/blink/public/platform/platform.h"
 #include "third_party/blink/renderer/platform/graphics/bitmap_image_metrics.h"
 #include "third_party/blink/renderer/platform/image-decoders/bmp/bmp_image_decoder.h"
@@ -51,9 +50,6 @@
 #include "third_party/blink/renderer/platform/image-decoders/avif/avif_image_decoder.h"
 #endif
 
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-#include "third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h"
-#endif
 namespace blink {
 
 namespace {
@@ -75,10 +71,6 @@
   if (image_extension == "avif")
     return cc::ImageType::kAVIF;
 #endif
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  if (image_extension == "jxl")
-    return cc::ImageType::kJXL;
-#endif
   return cc::ImageType::kInvalid;
 }
 
@@ -185,12 +177,6 @@
   if (AVIFImageDecoder::MatchesAVIFSignature(fast_reader))
     return "image/avif";
 #endif
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  if (base::FeatureList::IsEnabled(features::kJXL) &&
-      JXLImageDecoder::MatchesJXLSignature(fast_reader)) {
-    return "image/jxl";
-  }
-#endif
 
   return String();
 }
@@ -275,13 +261,6 @@
         alpha_option, high_bit_depth_decoding_option, color_behavior,
         max_decoded_bytes, animation_option);
 #endif
-#if BUILDFLAG(ENABLE_JXL_DECODER)
-  } else if (base::FeatureList::IsEnabled(features::kJXL) &&
-             mime_type == "image/jxl") {
-    decoder = std::make_unique<JXLImageDecoder>(
-        alpha_option, high_bit_depth_decoding_option, color_behavior,
-        max_decoded_bytes);
-#endif
   }
 
   if (decoder)
diff --git a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.cc b/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.cc
deleted file mode 100644
index c16a194..0000000
--- a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.cc
+++ /dev/null
@@ -1,683 +0,0 @@
-// Copyright 2021 The Chromium Authors
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h"
-#include "base/logging.h"
-#include "base/time/time.h"
-#include "third_party/blink/renderer/platform/image-decoders/fast_shared_buffer_reader.h"
-#include "third_party/skia/include/core/SkColorSpace.h"
-
-namespace blink {
-
-namespace {
-// Returns transfer function which approximates HLG with linear range 0..1,
-// while skcms_TransferFunction_makeHLGish uses linear range 0..12.
-void MakeTransferFunctionHLG01(skcms_TransferFunction* tf) {
-  skcms_TransferFunction_makeScaledHLGish(
-      tf, 1 / 12.0f, 2.0f, 2.0f, 1 / 0.17883277f, 0.28466892f, 0.55991073f);
-}
-
-// The input profile must outlive the output one as they will share their
-// buffers.
-skcms_ICCProfile ReplaceTransferFunction(skcms_ICCProfile profile,
-                                         const skcms_TransferFunction& tf) {
-  // Override the transfer function with a known parametric curve.
-  profile.has_trc = true;
-  for (int c = 0; c < 3; c++) {
-    profile.trc[c].table_entries = 0;
-    profile.trc[c].parametric = tf;
-  }
-  return profile;
-}
-
-// Computes whether the transfer function from the ColorProfile, that was
-// created from a parsed ICC profile, approximately matches the given parametric
-// transfer function.
-bool ApproximatelyMatchesTF(const ColorProfile& profile,
-                            const skcms_TransferFunction& tf) {
-  skcms_ICCProfile parsed_copy =
-      ReplaceTransferFunction(*profile.GetProfile(), tf);
-  return skcms_ApproximatelyEqualProfiles(profile.GetProfile(), &parsed_copy);
-}
-
-std::unique_ptr<ColorProfile> NewColorProfileWithSameBuffer(
-    const ColorProfile& buffer_donor,
-    skcms_ICCProfile new_profile) {
-  // The input ColorProfile owns the buffer memory, make a new copy for
-  // the newly created one and pass the ownership of the new copy to the new
-  // color profile.
-  std::unique_ptr<uint8_t[]> owned_buffer(
-      new uint8_t[buffer_donor.GetProfile()->size]);
-  memcpy(owned_buffer.get(), buffer_donor.GetProfile()->buffer,
-         buffer_donor.GetProfile()->size);
-  new_profile.buffer = owned_buffer.get();
-  return std::make_unique<ColorProfile>(new_profile, std::move(owned_buffer));
-}
-}  // namespace
-
-JXLImageDecoder::JXLImageDecoder(
-    AlphaOption alpha_option,
-    HighBitDepthDecodingOption high_bit_depth_decoding_option,
-    const ColorBehavior& color_behavior,
-    wtf_size_t max_decoded_bytes)
-    : ImageDecoder(alpha_option,
-                   high_bit_depth_decoding_option,
-                   color_behavior,
-                   max_decoded_bytes) {
-  info_.have_animation = false;
-}
-
-// Use the provisional Mime type "image/jxl" for JPEG XL images. See
-// https://www.iana.org/assignments/provisional-standard-media-types/provisional-standard-media-types.xhtml.
-const AtomicString& JXLImageDecoder::MimeType() const {
-  DEFINE_STATIC_LOCAL(const AtomicString, jxl_mime_type, ("image/jxl"));
-  return jxl_mime_type;
-}
-
-bool JXLImageDecoder::ReadBytes(size_t remaining,
-                                wtf_size_t* offset,
-                                WTF::Vector<uint8_t>* segment,
-                                FastSharedBufferReader* reader,
-                                const uint8_t** jxl_data,
-                                size_t* jxl_size) {
-  *offset -= remaining;
-  if (*offset + remaining >= reader->size()) {
-    segment->clear();
-    if (IsAllDataReceived()) {
-      DVLOG(1) << "need more input but all data received";
-      SetFailed();
-      return false;
-    }
-    // Return because we need more input from the reader, to continue
-    // decoding in the next call.
-    return false;
-  }
-  const char* buffer = nullptr;
-  size_t read = reader->GetSomeData(buffer, *offset);
-
-  if (read > remaining) {
-    // Sufficient data present in the segment from the
-    // FastSharedBufferReader, no need to copy to segment_.
-    *jxl_data = reinterpret_cast<const uint8_t*>(buffer);
-    *jxl_size = read;
-    *offset += read;
-    segment->clear();
-  } else {
-    if (segment->size() == remaining) {
-      // Keep reading from the end of the segment_ we already are
-      // appending to. The above read is ignored, and start reading after the
-      // end of the data we already have.
-      *offset += remaining;
-      read = 0;
-    } else {
-      // segment_->size() could be greater than or smaller than remaining.
-      // Typically, it'll be smaller than. If it is greater than, then we could
-      // do something similar as in the segment->size() == remaining case but
-      // remove the non-remaining bytes from the beginning of the segment_
-      // vector. This would avoid re-reading, however the case where
-      // segment->size() > remaining is rare since normally if the JXL decoder
-      // returns a positive value for remaining, it will be consistent, making
-      // the sizes match exactly, so this more complex case is not implemented.
-      // Clear the segment, the bytes from the GetSomeData above will be
-      // appended and then we continue reading from the position after the
-      // above GetSomeData read.
-      segment->clear();
-    }
-
-    for (;;) {
-      if (read) {
-        *offset += read;
-        segment->Append(buffer, base::checked_cast<wtf_size_t>(read));
-      }
-      if (segment->size() > remaining) {
-        *jxl_data = segment->data();
-        *jxl_size = segment->size();
-        // Have enough data, break and continue JXL decoding, rather than
-        // copy more input than needed into segment_.
-        break;
-      }
-      read = reader->GetSomeData(buffer, *offset);
-      if (read == 0) {
-        // We tested above that *offset + remaining >= reader.size() so
-        // should be able to read all data.
-        DVLOG(1) << "couldn't read all available data";
-        SetFailed();
-        return false;
-      }
-    }
-  }
-  return true;
-}
-
-void JXLImageDecoder::DecodeImpl(wtf_size_t index, bool only_size) {
-  if (Failed())
-    return;
-
-  if (IsDecodedSizeAvailable() && only_size) {
-    // Also SetEmbeddedProfile is done already if the size was set.
-    return;
-  }
-
-  DCHECK_LE(num_decoded_frames_, frame_buffer_cache_.size());
-  if (num_decoded_frames_ > index &&
-      frame_buffer_cache_[index].GetStatus() == ImageFrame::kFrameComplete) {
-    // Frame already complete
-    return;
-  }
-  if ((index < num_decoded_frames_) && dec_ &&
-      frame_buffer_cache_[index].GetStatus() != ImageFrame::kFramePartial) {
-    // An animation frame that already has been decoded, but does not have
-    // status ImageFrame::kFrameComplete, was requested.
-    // This can mean two things:
-    // (1) an earlier animation frame was purged but is to be re-decoded now.
-    // Rewind the decoder and skip to the requested frame.
-    // (2) During progressive decoding the frame has the status
-    // ImageFrame::kFramePartial.
-    JxlDecoderRewind(dec_.get());
-    offset_ = 0;
-    // No longer subscribe to JXL_DEC_BASIC_INFO or JXL_DEC_COLOR_ENCODING.
-    if (JXL_DEC_SUCCESS !=
-        JxlDecoderSubscribeEvents(
-            dec_.get(), JXL_DEC_FULL_IMAGE | JXL_DEC_FRAME_PROGRESSION)) {
-      SetFailed();
-      return;
-    }
-    JxlDecoderSkipFrames(dec_.get(), index);
-    num_decoded_frames_ = index;
-  }
-
-  if (!dec_) {
-    dec_ = JxlDecoderMake(nullptr);
-    // Subscribe to color encoding event even when only getting size, because
-    // SetSize must be called after SetEmbeddedColorProfile
-    const int events = JXL_DEC_BASIC_INFO | JXL_DEC_COLOR_ENCODING |
-                       JXL_DEC_FULL_IMAGE | JXL_DEC_FRAME_PROGRESSION;
-
-    if (JXL_DEC_SUCCESS != JxlDecoderSubscribeEvents(dec_.get(), events)) {
-      SetFailed();
-      return;
-    }
-    if (JXL_DEC_SUCCESS !=
-        JxlDecoderSetProgressiveDetail(dec_.get(), JxlProgressiveDetail::kDC)) {
-      SetFailed();
-      return;
-    }
-  } else {
-    offset_ -= JxlDecoderReleaseInput(dec_.get());
-  }
-
-  FastSharedBufferReader reader(data_.get());
-
-  const JxlPixelFormat format = {4, JXL_TYPE_FLOAT, JXL_NATIVE_ENDIAN, 0};
-
-  const bool size_available = IsDecodedSizeAvailable();
-
-  if (have_color_info_) {
-    xform_ = ColorTransform();
-  }
-
-  // The JXL API guarantees that we eventually get JXL_DEC_ERROR,
-  // JXL_DEC_SUCCESS or JXL_DEC_NEED_MORE_INPUT, and we exit the loop below in
-  // each case.
-  for (;;) {
-    if (only_size && have_color_info_)
-      return;
-    JxlDecoderStatus status = JxlDecoderProcessInput(dec_.get());
-    switch (status) {
-      case JXL_DEC_ERROR: {
-        DVLOG(1) << "Decoder error " << status;
-        SetFailed();
-        return;
-      }
-      case JXL_DEC_NEED_MORE_INPUT: {
-        // The decoder returns how many bytes it has not yet processed, and
-        // must be included in the next JxlDecoderSetInput call.
-        const size_t remaining = JxlDecoderReleaseInput(dec_.get());
-        const uint8_t* jxl_data = nullptr;
-        size_t jxl_size = 0;
-        if (!ReadBytes(remaining, &offset_, &segment_, &reader, &jxl_data,
-                       &jxl_size)) {
-          if (IsAllDataReceived()) {
-            // Happens only if a partial image file was transferred, otherwise
-            // status will be JXL_DEC_FULL_IMAGE or JXL_DEC_SUCCESS. In
-            // this case we flush one more time in order to get the progressive
-            // image plus everything known so far. The progressive image was not
-            // flushed when status was JXL_DEC_FRAME_PROGRESSION because all
-            // data seemed to have been received (not knowing then that it was
-            // only a partial file).
-            if (JXL_DEC_SUCCESS != JxlDecoderFlushImage(dec_.get())) {
-              DVLOG(1) << "JxlDecoderSetImageOutCallback failed";
-              SetFailed();
-              return;
-            }
-            ImageFrame& frame = frame_buffer_cache_[num_decoded_frames_ - 1];
-            frame.SetPixelsChanged(true);
-            frame.SetStatus(ImageFrame::kFramePartial);
-          }
-          return;
-        }
-
-        if (JXL_DEC_SUCCESS !=
-            JxlDecoderSetInput(dec_.get(), jxl_data, jxl_size)) {
-          DVLOG(1) << "JxlDecoderSetInput failed";
-          SetFailed();
-          return;
-        }
-        break;
-      }
-      case JXL_DEC_BASIC_INFO: {
-        if (JXL_DEC_SUCCESS != JxlDecoderGetBasicInfo(dec_.get(), &info_)) {
-          DVLOG(1) << "JxlDecoderGetBasicInfo failed";
-          SetFailed();
-          return;
-        }
-        if (!size_available && !SetSize(info_.xsize, info_.ysize)) {
-          return;
-        }
-        break;
-      }
-      case JXL_DEC_COLOR_ENCODING: {
-        if (IgnoresColorSpace()) {
-          have_color_info_ = true;
-          continue;
-        }
-
-        // If the decoder was used before with only_size == true, the color
-        // encoding is already decoded as well, and SetEmbeddedColorProfile
-        // should not be called a second time anymore.
-        if (size_available) {
-          continue;
-        }
-
-        // Detect whether the JXL image is intended to be an HDR image: when it
-        // uses more than 8 bits per pixel, or when it has explicitly marked
-        // PQ or HLG color profile.
-        if (info_.bits_per_sample > 8) {
-          is_hdr_ = true;
-        }
-        JxlColorEncoding color_encoding;
-        if (JXL_DEC_SUCCESS == JxlDecoderGetColorAsEncodedProfile(
-                                   dec_.get(), &format,
-                                   JXL_COLOR_PROFILE_TARGET_ORIGINAL,
-                                   &color_encoding)) {
-          if (color_encoding.transfer_function == JXL_TRANSFER_FUNCTION_PQ ||
-              color_encoding.transfer_function == JXL_TRANSFER_FUNCTION_HLG) {
-            is_hdr_ = true;
-          }
-        }
-
-        std::unique_ptr<ColorProfile> profile;
-
-        if (is_hdr_ &&
-            high_bit_depth_decoding_option_ == kHighBitDepthToHalfFloat) {
-          decode_to_half_float_ = true;
-        }
-
-        bool have_data_profile = false;
-        if (JXL_DEC_SUCCESS ==
-            JxlDecoderGetColorAsEncodedProfile(dec_.get(), &format,
-                                               JXL_COLOR_PROFILE_TARGET_DATA,
-                                               &color_encoding)) {
-          bool known_transfer_function = true;
-          bool known_gamut = true;
-          gfx::ColorSpace::PrimaryID gamut;
-          gfx::ColorSpace::TransferID transfer;
-          if (color_encoding.transfer_function == JXL_TRANSFER_FUNCTION_PQ) {
-            transfer = gfx::ColorSpace::TransferID::PQ;
-          } else if (color_encoding.transfer_function ==
-                     JXL_TRANSFER_FUNCTION_HLG) {
-            transfer = gfx::ColorSpace::TransferID::HLG;
-          } else if (color_encoding.transfer_function ==
-                     JXL_TRANSFER_FUNCTION_LINEAR) {
-            transfer = gfx::ColorSpace::TransferID::LINEAR;
-          } else if (color_encoding.transfer_function ==
-                     JXL_TRANSFER_FUNCTION_SRGB) {
-            transfer = gfx::ColorSpace::TransferID::SRGB;
-          } else {
-            known_transfer_function = false;
-          }
-
-          if (color_encoding.white_point == JXL_WHITE_POINT_D65 &&
-              color_encoding.primaries == JXL_PRIMARIES_2100) {
-            gamut = gfx::ColorSpace::PrimaryID::BT2020;
-          } else if (color_encoding.white_point == JXL_WHITE_POINT_D65 &&
-                     color_encoding.primaries == JXL_PRIMARIES_SRGB) {
-            gamut = gfx::ColorSpace::PrimaryID::BT709;
-          } else if (color_encoding.white_point == JXL_WHITE_POINT_D65 &&
-                     color_encoding.primaries == JXL_PRIMARIES_P3) {
-            gamut = gfx::ColorSpace::PrimaryID::P3;
-          } else {
-            known_gamut = false;
-          }
-
-          have_data_profile = known_transfer_function && known_gamut;
-
-          if (have_data_profile) {
-            skcms_ICCProfile dataProfile;
-            gfx::ColorSpace(gamut, transfer)
-                .ToSkColorSpace()
-                ->toProfile(&dataProfile);
-            profile = std::make_unique<ColorProfile>(dataProfile);
-          }
-        }
-
-        // Did not handle exact enum values, get as ICC profile instead.
-        if (!have_data_profile) {
-          size_t icc_size;
-          bool got_size =
-              JXL_DEC_SUCCESS == JxlDecoderGetICCProfileSize(
-                                     dec_.get(), &format,
-                                     JXL_COLOR_PROFILE_TARGET_DATA, &icc_size);
-          std::vector<uint8_t> icc_profile(icc_size);
-          if (got_size &&
-              JXL_DEC_SUCCESS == JxlDecoderGetColorAsICCProfile(
-                                     dec_.get(), &format,
-                                     JXL_COLOR_PROFILE_TARGET_DATA,
-                                     icc_profile.data(), icc_profile.size())) {
-            profile =
-                ColorProfile::Create(icc_profile.data(), icc_profile.size());
-            have_data_profile = true;
-
-            // Detect whether the ICC profile approximately equals PQ or HLG,
-            // and set the profile to one that indicates this transfer function
-            // more clearly than a raw ICC profile does, so Chrome considers
-            // the profile as HDR.
-            skcms_TransferFunction tf_pq;
-            skcms_TransferFunction tf_hlg01;
-            skcms_TransferFunction tf_hlg12;
-            skcms_TransferFunction_makePQ(&tf_pq);
-            MakeTransferFunctionHLG01(&tf_hlg01);
-            skcms_TransferFunction_makeHLG(&tf_hlg12);
-
-            if (ApproximatelyMatchesTF(*profile, tf_pq)) {
-              is_hdr_ = true;
-              auto hdr10 = gfx::ColorSpace::CreateHDR10().ToSkColorSpace();
-              skcms_TransferFunction pq;
-              hdr10->transferFn(&pq);
-              profile = NewColorProfileWithSameBuffer(
-                  *profile,
-                  ReplaceTransferFunction(*profile->GetProfile(), pq));
-            } else {
-              for (skcms_TransferFunction tf : {tf_hlg01, tf_hlg12}) {
-                if (ApproximatelyMatchesTF(*profile, tf)) {
-                  is_hdr_ = true;
-                  auto hlg_colorspace =
-                      gfx::ColorSpace::CreateHLG().ToSkColorSpace();
-                  skcms_TransferFunction hlg;
-                  hlg_colorspace->transferFn(&hlg);
-                  profile = NewColorProfileWithSameBuffer(
-                      *profile,
-                      ReplaceTransferFunction(*profile->GetProfile(), hlg));
-                  break;
-                }
-              }
-            }
-          }
-        }
-
-        if (is_hdr_ &&
-            high_bit_depth_decoding_option_ == kHighBitDepthToHalfFloat) {
-          decode_to_half_float_ = true;
-        }
-
-        if (have_data_profile) {
-          if (profile->GetProfile()->data_color_space == skcms_Signature_RGB) {
-            SetEmbeddedColorProfile(std::move(profile));
-          }
-        }
-        have_color_info_ = true;
-        break;
-      }
-      case JXL_DEC_NEED_IMAGE_OUT_BUFFER: {
-        const wtf_size_t frame_index = num_decoded_frames_++;
-        ImageFrame& frame = frame_buffer_cache_[frame_index];
-        // This is guaranteed to occur after JXL_DEC_BASIC_INFO so the size
-        // is correct.
-        if (!InitFrameBuffer(frame_index)) {
-          DVLOG(1) << "InitFrameBuffer failed";
-          SetFailed();
-          return;
-        }
-        frame.SetHasAlpha(info_.alpha_bits != 0);
-
-        size_t buffer_size;
-        if (JXL_DEC_SUCCESS !=
-            JxlDecoderImageOutBufferSize(dec_.get(), &format, &buffer_size)) {
-          DVLOG(1) << "JxlDecoderImageOutBufferSize failed";
-          SetFailed();
-          return;
-        }
-        if (buffer_size != info_.xsize * info_.ysize * 16) {
-          DVLOG(1) << "Unexpected buffer size";
-          SetFailed();
-          return;
-        }
-
-        // TODO(http://crbug.com/1210465): Add Munsell chart color accuracy
-        // tests for JXL
-        xform_ = ColorTransform();
-        auto callback = [](void* opaque, size_t x, size_t y, size_t num_pixels,
-                           const void* pixels) {
-          JXLImageDecoder* self = reinterpret_cast<JXLImageDecoder*>(opaque);
-          ImageFrame& frame =
-              self->frame_buffer_cache_[self->num_decoded_frames_ - 1];
-          void* row_dst = self->decode_to_half_float_
-                              ? reinterpret_cast<void*>(frame.GetAddrF16(
-                                    static_cast<int>(x), static_cast<int>(y)))
-                              : reinterpret_cast<void*>(frame.GetAddr(
-                                    static_cast<int>(x), static_cast<int>(y)));
-
-          bool dst_premultiply = frame.PremultiplyAlpha();
-
-          const skcms_PixelFormat kSrcFormat = skcms_PixelFormat_RGBA_ffff;
-          const skcms_PixelFormat kDstFormat = self->decode_to_half_float_
-                                                   ? skcms_PixelFormat_RGBA_hhhh
-                                                   : XformColorFormat();
-
-          if (self->xform_ || (kDstFormat != kSrcFormat) ||
-              (dst_premultiply && frame.HasAlpha())) {
-            skcms_AlphaFormat src_alpha = skcms_AlphaFormat_Unpremul;
-            skcms_AlphaFormat dst_alpha =
-                (dst_premultiply && self->info_.alpha_bits)
-                    ? skcms_AlphaFormat_PremulAsEncoded
-                    : skcms_AlphaFormat_Unpremul;
-            const auto* src_profile =
-                self->xform_ ? self->xform_->SrcProfile() : nullptr;
-            const auto* dst_profile =
-                self->xform_ ? self->xform_->DstProfile() : nullptr;
-            bool color_conversion_successful = skcms_Transform(
-                pixels, kSrcFormat, src_alpha, src_profile, row_dst, kDstFormat,
-                dst_alpha, dst_profile, num_pixels);
-            DCHECK(color_conversion_successful);
-          }
-        };
-        if (JXL_DEC_SUCCESS != JxlDecoderSetImageOutCallback(
-                                   dec_.get(), &format, callback, this)) {
-          DVLOG(1) << "JxlDecoderSetImageOutCallback failed";
-          SetFailed();
-          return;
-        }
-        break;
-      }
-      case JXL_DEC_FRAME_PROGRESSION: {
-        if (IsAllDataReceived()) {
-          break;
-        } else {
-          if (JXL_DEC_SUCCESS != JxlDecoderFlushImage(dec_.get())) {
-            DVLOG(1) << "JxlDecoderSetImageOutCallback failed";
-            SetFailed();
-            return;
-          }
-          ImageFrame& frame = frame_buffer_cache_[num_decoded_frames_ - 1];
-          frame.SetPixelsChanged(true);
-          frame.SetStatus(ImageFrame::kFramePartial);
-          break;
-        }
-      }
-      case JXL_DEC_FULL_IMAGE: {
-        ImageFrame& frame = frame_buffer_cache_[num_decoded_frames_ - 1];
-        frame.SetPixelsChanged(true);
-        frame.SetStatus(ImageFrame::kFrameComplete);
-        // All required frames were decoded.
-        if (num_decoded_frames_ > index) {
-          return;
-        }
-        break;
-      }
-      case JXL_DEC_SUCCESS: {
-        // Finished decoding entire image, with all frames in case of animation.
-        // Don't reset dec_, since we may want to rewind it if an earlier
-        // animation frame has to be decoded again.
-        segment_.clear();
-        return;
-      }
-      default: {
-        DVLOG(1) << "Unexpected decoder status " << status;
-        SetFailed();
-        return;
-      }
-    }
-  }
-}
-
-bool JXLImageDecoder::MatchesJXLSignature(
-    const FastSharedBufferReader& fast_reader) {
-  char buffer[12];
-  if (fast_reader.size() < sizeof(buffer))
-    return false;
-  const char* contents = reinterpret_cast<const char*>(
-      fast_reader.GetConsecutiveData(0, sizeof(buffer), buffer));
-  // Direct codestream
-  if (!memcmp(contents, "\xFF\x0A", 2))
-    return true;
-  // Box format container
-  if (!memcmp(contents, "\0\0\0\x0CJXL \x0D\x0A\x87\x0A", 12))
-    return true;
-  return false;
-}
-
-void JXLImageDecoder::InitializeNewFrame(wtf_size_t index) {
-  auto& buffer = frame_buffer_cache_[index];
-  if (decode_to_half_float_)
-    buffer.SetPixelFormat(ImageFrame::PixelFormat::kRGBA_F16);
-  buffer.SetHasAlpha(info_.alpha_bits != 0);
-  buffer.SetPremultiplyAlpha(premultiply_alpha_);
-}
-
-bool JXLImageDecoder::FrameIsReceivedAtIndex(wtf_size_t index) const {
-  return IsAllDataReceived() ||
-         (index < num_decoded_frames_ &&
-          frame_buffer_cache_[index].GetStatus() == ImageFrame::kFrameComplete);
-}
-
-int JXLImageDecoder::RepetitionCount() const {
-  if (!info_.have_animation)
-    return kAnimationNone;
-
-  if (info_.animation.num_loops == 0)
-    return kAnimationLoopInfinite;
-
-  if (info_.animation.num_loops == 1)
-    return kAnimationLoopOnce;
-
-  return info_.animation.num_loops;
-}
-
-base::TimeDelta JXLImageDecoder::FrameDurationAtIndex(wtf_size_t index) const {
-  if (index < frame_durations_.size())
-    return base::Seconds(frame_durations_[index]);
-
-  return base::TimeDelta();
-}
-
-wtf_size_t JXLImageDecoder::DecodeFrameCount() {
-  DecodeSize();
-  if (!info_.have_animation) {
-    frame_durations_.resize(1);
-    frame_durations_[0] = 0;
-    return 1;
-  }
-
-  FastSharedBufferReader reader(data_.get());
-  if (has_full_frame_count_ || size_at_last_frame_count_ == reader.size()) {
-    return frame_buffer_cache_.size();
-  }
-  size_at_last_frame_count_ = reader.size();
-
-  // Decode the metadata of every frame that is available.
-  if (frame_count_dec_ == nullptr) {
-    frame_durations_.clear();
-    frame_count_dec_ = JxlDecoderMake(nullptr);
-    frame_count_offset_ = 0;
-    if (JXL_DEC_SUCCESS !=
-        JxlDecoderSubscribeEvents(frame_count_dec_.get(), JXL_DEC_FRAME)) {
-      SetFailed();
-      return frame_buffer_cache_.size();
-    }
-  }
-
-  for (;;) {
-    JxlDecoderStatus status = JxlDecoderProcessInput(frame_count_dec_.get());
-    switch (status) {
-      case JXL_DEC_ERROR: {
-        DVLOG(1) << "Decoder error " << status;
-        SetFailed();
-        return frame_buffer_cache_.size();
-      }
-      case JXL_DEC_NEED_MORE_INPUT: {
-        // The decoder returns how many bytes it has not yet processed, and
-        // must be included in the next JxlDecoderSetInput call.
-        const size_t remaining = JxlDecoderReleaseInput(frame_count_dec_.get());
-        const uint8_t* jxl_data = nullptr;
-        size_t jxl_size = 0;
-        if (!ReadBytes(remaining, &frame_count_offset_, &frame_count_segment_,
-                       &reader, &jxl_data, &jxl_size)) {
-          if (Failed()) {
-            return frame_buffer_cache_.size();
-          }
-          return frame_durations_.size();
-        }
-
-        if (JXL_DEC_SUCCESS !=
-            JxlDecoderSetInput(frame_count_dec_.get(), jxl_data, jxl_size)) {
-          DVLOG(1) << "JxlDecoderSetInput failed";
-          SetFailed();
-          return frame_buffer_cache_.size();
-        }
-        break;
-      }
-      case JXL_DEC_FRAME: {
-        JxlFrameHeader frame_header;
-        if (JxlDecoderGetFrameHeader(frame_count_dec_.get(), &frame_header) !=
-            JXL_DEC_SUCCESS) {
-          DVLOG(1) << "GetFrameHeader failed";
-          SetFailed();
-          return frame_buffer_cache_.size();
-        }
-        if (frame_header.is_last) {
-          has_full_frame_count_ = true;
-        }
-        frame_durations_.push_back(1.0f * frame_header.duration *
-                                   info_.animation.tps_denominator /
-                                   info_.animation.tps_numerator);
-        break;
-      }
-      case JXL_DEC_SUCCESS: {
-        // If the file is fully processed, we won't need to run the decoder
-        // anymore: we can free the memory.
-        frame_count_dec_ = nullptr;
-        DCHECK(has_full_frame_count_);
-        frame_count_segment_.clear();
-        return frame_durations_.size();
-      }
-      default: {
-        DVLOG(1) << "Unexpected decoder status " << status;
-        SetFailed();
-        return frame_buffer_cache_.size();
-      }
-    }
-  }
-}
-
-}  // namespace blink
diff --git a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h b/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h
deleted file mode 100644
index 195abf0..0000000
--- a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Copyright (c) 2021, Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_JXL_JXL_IMAGE_DECODER_H_
-#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_JXL_JXL_IMAGE_DECODER_H_
-
-#include "third_party/blink/renderer/platform/image-decoders/fast_shared_buffer_reader.h"
-#include "third_party/blink/renderer/platform/image-decoders/image_decoder.h"
-
-#include "third_party/libjxl/src/lib/include/jxl/decode.h"
-#include "third_party/libjxl/src/lib/include/jxl/decode_cxx.h"
-
-namespace blink {
-
-// This class decodes the JXL image format.
-class PLATFORM_EXPORT JXLImageDecoder final : public ImageDecoder {
- public:
-  JXLImageDecoder(AlphaOption,
-                  HighBitDepthDecodingOption high_bit_depth_decoding_option,
-                  const ColorBehavior&,
-                  wtf_size_t max_decoded_bytes);
-
-  // ImageDecoder:
-  String FilenameExtension() const override { return "jxl"; }
-  const AtomicString& MimeType() const override;
-  bool ImageIsHighBitDepth() override { return is_hdr_; }
-
-  // Returns true if the data in fast_reader begins with
-  static bool MatchesJXLSignature(const FastSharedBufferReader& fast_reader);
-
- private:
-  // ImageDecoder:
-  void DecodeSize() override { DecodeImpl(0, true); }
-  wtf_size_t DecodeFrameCount() override;
-  void Decode(wtf_size_t frame) override { DecodeImpl(frame); }
-  void InitializeNewFrame(wtf_size_t) override;
-
-  // Decodes up to a given frame.  If |only_size| is true, stops decoding after
-  // calculating the image size. If decoding fails but there is no more
-  // data coming, sets the "decode failure" flag.
-  void DecodeImpl(wtf_size_t frame, bool only_size = false);
-
-  bool FrameIsReceivedAtIndex(wtf_size_t) const override;
-  base::TimeDelta FrameDurationAtIndex(wtf_size_t) const override;
-  int RepetitionCount() const override;
-  bool CanReusePreviousFrameBuffer(wtf_size_t) const override { return false; }
-
-  // Reads bytes from the segment reader, after releasing input from the JXL
-  // decoder, which required `remaining` previous bytes to still be available.
-  // Starts reading from *offset - remaining, and ensures more than remaining
-  // bytes are read, if possible. Returns false if not enough bytes are
-  // available or if Failed() was set.
-  bool ReadBytes(size_t remaining,
-                 wtf_size_t* offset,
-                 WTF::Vector<uint8_t>* segment,
-                 FastSharedBufferReader* reader,
-                 const uint8_t** jxl_data,
-                 size_t* jxl_size);
-
-  JxlDecoderPtr dec_ = nullptr;
-  wtf_size_t offset_ = 0;
-
-  JxlDecoderPtr frame_count_dec_ = nullptr;
-  wtf_size_t frame_count_offset_ = 0;
-
-  // The image is considered to be HDR, such as using PQ or HLG transfer
-  // function in the color space.
-  bool is_hdr_ = false;
-  bool decode_to_half_float_ = false;
-
-  JxlBasicInfo info_;
-  bool have_color_info_ = false;
-
-  // Preserved for JXL pixel callback. Not owned.
-  ColorProfileTransform* xform_;
-
-  // Fields for animation support.
-
-  // The amount of frames the JXL decoder has decoded. This can be reset to
-  // an earlier amount if frame buffers were cleared and decoding was
-  // restarted from an earlier frame. This is used to keep track of the index
-  // in the frame_buffer_cache_.
-  wtf_size_t num_decoded_frames_ = 0;
-  bool has_full_frame_count_ = false;
-  size_t size_at_last_frame_count_ = 0;
-  WTF::Vector<float> frame_durations_;
-  // Multiple concatenated segments from the FastSharedBufferReader, these are
-  // only used when a single segment did not contain enough data for the JXL
-  // parser.
-  WTF::Vector<uint8_t> segment_;
-  WTF::Vector<uint8_t> frame_count_segment_;
-};
-
-}  // namespace blink
-
-#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_JXL_JXL_IMAGE_DECODER_H_
diff --git a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder_test.cc b/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder_test.cc
deleted file mode 100644
index fd21525..0000000
--- a/third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder_test.cc
+++ /dev/null
@@ -1,626 +0,0 @@
-// Copyright 2021 The Chromium Authors
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "third_party/blink/renderer/platform/image-decoders/jxl/jxl_image_decoder.h"
-
-#include <memory>
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/blink/renderer/platform/image-decoders/image_decoder_test_helpers.h"
-#include "third_party/skia/include/core/SkColorSpace.h"
-#include "ui/gfx/geometry/point.h"
-
-namespace blink {
-
-namespace {
-
-std::unique_ptr<ImageDecoder> CreateJXLDecoderWithArguments(
-    const char* jxl_file,
-    ImageDecoder::AlphaOption alpha_option,
-    ImageDecoder::HighBitDepthDecodingOption high_bit_depth_decoding_option,
-    ColorBehavior color_behavior) {
-  auto decoder = std::make_unique<JXLImageDecoder>(
-      alpha_option, high_bit_depth_decoding_option, color_behavior,
-      ImageDecoder::kNoDecodedImageByteLimit);
-  scoped_refptr<SharedBuffer> data = ReadFile(jxl_file);
-  EXPECT_FALSE(data->empty());
-  decoder->SetData(data.get(), true);
-  return decoder;
-}
-
-std::unique_ptr<ImageDecoder> CreateJXLDecoder() {
-  return std::make_unique<JXLImageDecoder>(
-      ImageDecoder::kAlphaNotPremultiplied, ImageDecoder::kDefaultBitDepth,
-      ColorBehavior::Tag(), ImageDecoder::kNoDecodedImageByteLimit);
-}
-
-std::unique_ptr<ImageDecoder> CreateJXLDecoderWithData(const char* jxl_file) {
-  auto decoder = CreateJXLDecoder();
-  scoped_refptr<SharedBuffer> data = ReadFile(jxl_file);
-  EXPECT_FALSE(data->empty());
-  decoder->SetData(data.get(), true);
-  return decoder;
-}
-
-// expected_color must match the expected top left pixel
-void TestColorProfile(const char* jxl_file,
-                      ColorBehavior color_behavior,
-                      SkColor expected_color) {
-  auto decoder = CreateJXLDecoderWithArguments(
-      jxl_file, ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-      ImageDecoder::kDefaultBitDepth, color_behavior);
-  EXPECT_EQ(1u, decoder->FrameCount());
-  ImageFrame* frame = decoder->DecodeFrameBufferAtIndex(0);
-  ASSERT_TRUE(frame);
-  EXPECT_EQ(ImageFrame::kFrameComplete, frame->GetStatus());
-  EXPECT_FALSE(decoder->Failed());
-  const SkBitmap& bitmap = frame->Bitmap();
-  SkColor frame_color = bitmap.getColor(0, 0);
-  for (int i = 0; i < 4; ++i) {
-    int frame_comp = (frame_color >> (8 * i)) & 255;
-    int expected_comp = (expected_color >> (8 * i)) & 255;
-    EXPECT_GE(1, abs(frame_comp - expected_comp));
-  }
-}
-
-// Convert from float16 bits in a uint16_t, to 32-bit float, for testing
-static float FromFloat16(uint16_t a) {
-  // 5 bits exponent
-  int exp = (a >> 10) & 31;
-  // 10 bits fractional part
-  float frac = a & 1023;
-  // 1 bit sign
-  int sign = (a & 32768) ? 1 : 0;
-  bool subnormal = exp == 0;
-  // Infinity and NaN are not supported here.
-  exp -= 15;
-  if (subnormal)
-    exp++;
-  frac /= 1024.0;
-  if (!subnormal)
-    frac++;
-  frac *= std::pow(2, exp);
-  if (sign)
-    frac = -frac;
-  return frac;
-}
-
-// expected_color must match the expected top left pixel
-void TestHDR(const char* jxl_file,
-             ColorBehavior color_behavior,
-             bool expect_f16,
-             float expected_r,
-             float expected_g,
-             float expected_b,
-             float expected_a) {
-  auto decoder = CreateJXLDecoderWithArguments(
-      jxl_file, ImageDecoder::AlphaOption::kAlphaPremultiplied,
-      ImageDecoder::kHighBitDepthToHalfFloat, color_behavior);
-  EXPECT_TRUE(decoder->IsSizeAvailable());
-  EXPECT_EQ(1u, decoder->FrameCount());
-  ImageFrame* frame = decoder->DecodeFrameBufferAtIndex(0);
-  ASSERT_TRUE(frame);
-  EXPECT_EQ(ImageFrame::kFrameComplete, frame->GetStatus());
-  EXPECT_FALSE(decoder->Failed());
-  float r, g, b, a;
-  if (expect_f16) {
-    EXPECT_EQ(ImageFrame::kRGBA_F16, frame->GetPixelFormat());
-  } else {
-    EXPECT_EQ(ImageFrame::kN32, frame->GetPixelFormat());
-  }
-  if (ImageFrame::kRGBA_F16 == frame->GetPixelFormat()) {
-    uint64_t first_pixel = *frame->GetAddrF16(0, 0);
-    r = FromFloat16(first_pixel >> 0);
-    g = FromFloat16(first_pixel >> 16);
-    b = FromFloat16(first_pixel >> 32);
-    a = FromFloat16(first_pixel >> 48);
-  } else {
-    uint32_t first_pixel = *frame->GetAddr(0, 0);
-    a = ((first_pixel >> SK_A32_SHIFT) & 255) / 255.0;
-    r = ((first_pixel >> SK_R32_SHIFT) & 255) / 255.0;
-    g = ((first_pixel >> SK_G32_SHIFT) & 255) / 255.0;
-    b = ((first_pixel >> SK_B32_SHIFT) & 255) / 255.0;
-  }
-  constexpr float eps = 0.01;
-  EXPECT_NEAR(expected_r, r, eps);
-  EXPECT_NEAR(expected_g, g, eps);
-  EXPECT_NEAR(expected_b, b, eps);
-  EXPECT_NEAR(expected_a, a, eps);
-}
-
-void TestSize(const char* jxl_file, gfx::Size expected_size) {
-  auto decoder = CreateJXLDecoderWithData(jxl_file);
-  EXPECT_TRUE(decoder->IsSizeAvailable());
-  EXPECT_EQ(expected_size, decoder->Size());
-}
-
-struct FramePoint {
-  size_t frame;
-  gfx::Point point;
-};
-
-void TestPixel(const char* jxl_file,
-               gfx::Size expected_size,
-               const WTF::Vector<FramePoint>& coordinates,
-               const WTF::Vector<SkColor>& expected_colors,
-               ImageDecoder::AlphaOption alpha_option,
-               ColorBehavior color_behavior,
-               int accuracy,
-               size_t num_frames = 1) {
-  SCOPED_TRACE(testing::Message()
-               << "TestPixel jxl_file: " << jxl_file
-               << ", alpha_option:" << static_cast<int>(alpha_option));
-  EXPECT_EQ(coordinates.size(), expected_colors.size());
-  auto decoder = CreateJXLDecoderWithArguments(
-      jxl_file, alpha_option, ImageDecoder::kDefaultBitDepth, color_behavior);
-  EXPECT_TRUE(decoder->IsSizeAvailable());
-  EXPECT_EQ(expected_size, decoder->Size());
-  ASSERT_EQ(num_frames, decoder->FrameCount());
-  for (size_t i = 0; i < num_frames; ++i) {
-    ImageFrame* frame = decoder->DecodeFrameBufferAtIndex(i);
-    ASSERT_TRUE(frame);
-    EXPECT_EQ(ImageFrame::kFrameComplete, frame->GetStatus());
-  }
-  EXPECT_FALSE(decoder->Failed());
-  for (size_t i = 0; i < coordinates.size(); ++i) {
-    SCOPED_TRACE(testing::Message() << "Coordinate: " << i);
-    const SkBitmap& bitmap =
-        decoder->DecodeFrameBufferAtIndex(coordinates[i].frame)->Bitmap();
-    EXPECT_TRUE(SkColorSpace::Equals(bitmap.colorSpace(),
-                                     decoder->ColorSpaceForSkImages().get()));
-    int x = coordinates[i].point.x();
-    int y = coordinates[i].point.y();
-    SkColor frame_color = bitmap.getColor(x, y);
-    int r_expected = (expected_colors[i] >> 16) & 255;
-    int g_expected = (expected_colors[i] >> 8) & 255;
-    int b_expected = (expected_colors[i] >> 0) & 255;
-    int a_expected = (expected_colors[i] >> 24) & 255;
-    int r_actual = (frame_color >> 16) & 255;
-    int g_actual = (frame_color >> 8) & 255;
-    int b_actual = (frame_color >> 0) & 255;
-    int a_actual = (frame_color >> 24) & 255;
-    EXPECT_NEAR(r_expected, r_actual, accuracy);
-    EXPECT_NEAR(g_expected, g_actual, accuracy);
-    EXPECT_NEAR(b_expected, b_actual, accuracy);
-    // Alpha is always lossless.
-    EXPECT_EQ(a_expected, a_actual);
-  }
-}
-
-// SegmentReader implementation for testing, which always returns segments
-// of size 1. This allows to test whether the decoder handles streaming
-// correctly in the most fine-grained case.
-class PerByteSegmentReader : public SegmentReader {
- public:
-  PerByteSegmentReader(SharedBuffer& buffer) : buffer_(buffer) {}
-  size_t size() const override { return buffer_.size(); }
-  size_t GetSomeData(const char*& data, size_t position) const override {
-    if (position >= buffer_.size()) {
-      return 0;
-    }
-    data = buffer_.Data() + position;
-    return 1;
-  }
-  sk_sp<SkData> GetAsSkData() const override { return nullptr; }
-
- private:
-  SharedBuffer& buffer_;
-};
-
-// Tests whether the decoder successfully parses the file without errors or
-// infinite loop in the worst case of the reader returning 1-byte segments.
-void TestSegmented(const char* jxl_file, gfx::Size expected_size) {
-  auto decoder = std::make_unique<JXLImageDecoder>(
-      ImageDecoder::kAlphaNotPremultiplied, ImageDecoder::kDefaultBitDepth,
-      ColorBehavior::Tag(), ImageDecoder::kNoDecodedImageByteLimit);
-  scoped_refptr<SharedBuffer> data = ReadFile(jxl_file);
-  EXPECT_FALSE(data->empty());
-
-  scoped_refptr<SegmentReader> reader =
-      base::AdoptRef(new PerByteSegmentReader(*data.get()));
-  decoder->SetData(reader, true);
-
-  ImageFrame* frame;
-  for (;;) {
-    frame = decoder->DecodeFrameBufferAtIndex(0);
-    if (decoder->Failed())
-      break;
-    if (frame)
-      break;
-  }
-
-  EXPECT_TRUE(decoder->IsSizeAvailable());
-  EXPECT_LE(1u, decoder->FrameCount());
-  EXPECT_TRUE(!!frame);
-  EXPECT_EQ(ImageFrame::kFrameComplete, frame->GetStatus());
-  EXPECT_FALSE(decoder->Failed());
-  EXPECT_EQ(expected_size, decoder->Size());
-}
-
-TEST(JXLTests, SegmentedTest) {
-  TestSegmented("/images/resources/jxl/alpha-lossless.jxl", gfx::Size(2, 10));
-  TestSegmented("/images/resources/jxl/3x3_srgb_lossy.jxl", gfx::Size(3, 3));
-  TestSegmented("/images/resources/jxl/pq_gradient_icc_lossy.jxl",
-                gfx::Size(16, 16));
-  TestSegmented("/images/resources/jxl/animated.jxl", gfx::Size(16, 16));
-}
-
-TEST(JXLTests, SizeTest) {
-  TestSize("/images/resources/jxl/alpha-lossless.jxl", gfx::Size(2, 10));
-}
-
-TEST(JXLTests, PixelTest) {
-  TestPixel("/images/resources/jxl/red-10-default.jxl", gfx::Size(10, 10),
-            {{0, {0, 0}}}, {SkColorSetARGB(255, 255, 0, 0)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/red-10-lossless.jxl", gfx::Size(10, 10),
-            {{0, {0, 1}}}, {SkColorSetARGB(255, 255, 0, 0)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/red-10-container.jxl", gfx::Size(10, 10),
-            {{0, {1, 0}}}, {SkColorSetARGB(255, 255, 0, 0)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/green-10-lossless.jxl", gfx::Size(10, 10),
-            {{0, {2, 3}}}, {SkColorSetARGB(255, 0, 255, 0)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/blue-10-lossless.jxl", gfx::Size(10, 10),
-            {{0, {9, 9}}}, {SkColorSetARGB(255, 0, 0, 255)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/alpha-lossless.jxl", gfx::Size(2, 10),
-            {{0, {0, 1}}}, {SkColorSetARGB(0, 255, 255, 255)},
-            ImageDecoder::AlphaOption::kAlphaNotPremultiplied,
-            ColorBehavior::Tag(), 0);
-  TestPixel("/images/resources/jxl/alpha-lossless.jxl", gfx::Size(2, 10),
-            {{0, {0, 1}}}, {SkColorSetARGB(0, 0, 0, 0)},
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 0);
-
-  WTF::Vector<FramePoint> coordinates_3x3 = {
-      {0, {0, 0}}, {0, {1, 0}}, {0, {2, 0}}, {0, {0, 1}}, {0, {1, 1}},
-      {0, {2, 1}}, {0, {0, 2}}, {0, {1, 2}}, {0, {2, 2}},
-  };
-
-  TestPixel("/images/resources/jxl/3x3_srgb_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 0);
-
-  TestPixel("/images/resources/jxl/3x3_srgb_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 15);
-
-  TestPixel("/images/resources/jxl/3x3a_srgb_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 0);
-
-  TestPixel("/images/resources/jxl/3x3a_srgb_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 15);
-
-  // Lossless, but allow some inaccuracy due to the color profile conversion.
-  TestPixel("/images/resources/jxl/3x3_gbr_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 3);
-
-  TestPixel("/images/resources/jxl/3x3_gbr_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 35);
-
-  // Lossless, but allow some inaccuracy due to the color profile conversion.
-  TestPixel("/images/resources/jxl/3x3a_gbr_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 3);
-
-  TestPixel("/images/resources/jxl/3x3a_gbr_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::TransformToSRGB(), 35);
-
-  // Lossless, but allow some inaccuracy due to the color profile conversion.
-  TestPixel("/images/resources/jxl/3x3_pq_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 2);
-
-  TestPixel("/images/resources/jxl/3x3_pq_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 64, 255, 64),
-                SkColorSetARGB(255, 39, 76, 255),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 15);
-
-  TestPixel("/images/resources/jxl/3x3a_pq_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 2);
-
-  TestPixel("/images/resources/jxl/3x3a_pq_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 64, 255, 64),
-                SkColorSetARGB(128, 40, 82, 255),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 64, 64, 128),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 15);
-
-  TestPixel("/images/resources/jxl/3x3_hlg_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 0, 0),
-                SkColorSetARGB(255, 0, 255, 0),
-                SkColorSetARGB(255, 0, 0, 255),
-                SkColorSetARGB(255, 86, 46, 46),
-                SkColorSetARGB(255, 46, 86, 46),
-                SkColorSetARGB(255, 46, 46, 86),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 85, 85, 85),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 2);
-
-  TestPixel("/images/resources/jxl/3x3_hlg_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(255, 255, 13, 13),
-                SkColorSetARGB(255, 13, 255, 13),
-                SkColorSetARGB(255, 13, 13, 255),
-                SkColorSetARGB(255, 128, 64, 64),
-                SkColorSetARGB(255, 64, 128, 64),
-                SkColorSetARGB(255, 64, 64, 128),
-                SkColorSetARGB(255, 255, 255, 255),
-                SkColorSetARGB(255, 128, 128, 128),
-                SkColorSetARGB(255, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 15);
-
-  TestPixel("/images/resources/jxl/3x3a_hlg_lossless.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 0, 0),
-                SkColorSetARGB(128, 0, 255, 0),
-                SkColorSetARGB(128, 0, 0, 255),
-                SkColorSetARGB(128, 86, 46, 46),
-                SkColorSetARGB(128, 46, 86, 46),
-                SkColorSetARGB(128, 46, 46, 86),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 85, 85, 85),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 6);
-
-  TestPixel("/images/resources/jxl/3x3a_hlg_lossy.jxl", gfx::Size(3, 3),
-            coordinates_3x3,
-            {
-                SkColorSetARGB(128, 255, 13, 13),
-                SkColorSetARGB(128, 13, 255, 13),
-                SkColorSetARGB(128, 13, 13, 255),
-                SkColorSetARGB(128, 128, 64, 64),
-                SkColorSetARGB(128, 64, 128, 64),
-                SkColorSetARGB(128, 74, 64, 128),
-                SkColorSetARGB(128, 255, 255, 255),
-                SkColorSetARGB(128, 128, 128, 128),
-                SkColorSetARGB(128, 0, 0, 0),
-            },
-            ImageDecoder::AlphaOption::kAlphaPremultiplied,
-            ColorBehavior::Tag(), 15);
-}
-
-TEST(JXLTests, ColorProfileTest) {
-  TestColorProfile("/images/resources/jxl/icc-v2-gbr.jxl", ColorBehavior::Tag(),
-                   SkColorSetARGB(255, 0xaf, 0xfe, 0x6b));
-  TestColorProfile("/images/resources/jxl/icc-v2-gbr.jxl",
-                   ColorBehavior::TransformToSRGB(),
-                   SkColorSetARGB(255, 0x6b, 0xb1, 0xfe));
-  TestColorProfile("/images/resources/jxl/icc-v2-gbr.jxl",
-                   ColorBehavior::Ignore(),
-                   SkColorSetARGB(255, 0xaf, 0xfe, 0x6b));
-}
-
-TEST(JXLTests, AnimatedPixelTest) {
-  TestPixel(
-      "/images/resources/jxl/animated.jxl", gfx::Size(16, 16),
-      {{0, {0, 0}}, {1, {0, 0}}},
-      {SkColorSetARGB(255, 204, 0, 153), SkColorSetARGB(255, 0, 102, 102)},
-      ImageDecoder::AlphaOption::kAlphaNotPremultiplied, ColorBehavior::Tag(),
-      0, 2);
-}
-
-TEST(JXLTests, JXLHDRTest) {
-  // PQ tests
-  // PQ values, as expected
-  TestHDR("/images/resources/jxl/pq_gradient_lossy.jxl",
-          ColorBehavior::Ignore(), false, 0.58039218187332153,
-          0.73333334922790527, 0.43921568989753723, 1);
-  // sRGB as expected, but not an exact match
-  TestHDR("/images/resources/jxl/pq_gradient_lossy.jxl",
-          ColorBehavior::TransformToSRGB(), true, -0.9248046875, 1.943359375,
-          -0.4443359375, 1);
-
-  // linear sRGB as expected.
-  TestHDR("/images/resources/jxl/pq_gradient_lossy.jxl", ColorBehavior::Tag(),
-          true, 0.58039218187332153, 0.73333334922790527, 0.43921568989753723,
-          1);
-
-  // correct, original PQ values
-  TestHDR("/images/resources/jxl/pq_gradient_lossless.jxl",
-          ColorBehavior::Ignore(), false, 0.58039218187332153,
-          0.73725491762161255, 0.45098039507865906, 1);
-  TestHDR("/images/resources/jxl/pq_gradient_lossless.jxl",
-          ColorBehavior::TransformToSRGB(), true, -0.95751953125, 1.9677734375,
-          -0.416748046875, 1);
-  // correct, original PQ values
-  TestHDR("/images/resources/jxl/pq_gradient_lossless.jxl",
-          ColorBehavior::Tag(), true, 0.58056640625, 0.7373046875,
-          0.450927734375, 1);
-
-  // with ICC
-  // clipped linear sRGB, as expected from current JXL implementation
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossy.jxl",
-          ColorBehavior::Ignore(), false, 0, 0.0930381, 0, 1);
-
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossy.jxl",
-          ColorBehavior::TransformToSRGB(), false, 0, 0.338623046875, 0, 1);
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossy.jxl",
-          ColorBehavior::Tag(), false, 0, 0.0930381, 0, 1);
-
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossless.jxl",
-          ColorBehavior::Ignore(), false, 0.58039218187332153,
-          0.73725491762161255, 0.45098039507865906, 1);
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossless.jxl",
-          ColorBehavior::TransformToSRGB(), true, -0.95751953125, 1.9677734375,
-          -0.416748046875, 1);
-  TestHDR("/images/resources/jxl/pq_gradient_icc_lossless.jxl",
-          ColorBehavior::Tag(), true, 0.58039218187332153, 0.73725491762161255,
-          0.45098039507865906, 1);
-}
-
-TEST(JXLTests, RandomFrameDecode) {
-  TestRandomFrameDecode(&CreateJXLDecoder, "/images/resources/jxl/count.jxl");
-}
-
-TEST(JXLTests, RandomDecodeAfterClearFrameBufferCache) {
-  TestRandomDecodeAfterClearFrameBufferCache(&CreateJXLDecoder,
-                                             "/images/resources/jxl/count.jxl");
-}
-
-}  // namespace
-}  // namespace blink
diff --git a/third_party/blink/tools/commit_stats/git-dirs.txt b/third_party/blink/tools/commit_stats/git-dirs.txt
index 13ab1e9..50bb032 100644
--- a/third_party/blink/tools/commit_stats/git-dirs.txt
+++ b/third_party/blink/tools/commit_stats/git-dirs.txt
@@ -76,7 +76,6 @@
 ./third_party/angle/third_party/glmark2/src,ANGLE
 ./third_party/openh264/src,OpenH264
 ./third_party/googletest/src,GoogleTest
-./third_party/libjxl/src,libjxl
 ./third_party/highway/src,highway
 ./third_party/wuffs/src,wuffs
 ./third_party/catapult,catapult
diff --git a/third_party/blink/web_tests/SmokeTests/Mac.txt b/third_party/blink/web_tests/SmokeTests/Mac.txt
index c03eed6a..1d9f550 100644
--- a/third_party/blink/web_tests/SmokeTests/Mac.txt
+++ b/third_party/blink/web_tests/SmokeTests/Mac.txt
@@ -1478,7 +1478,6 @@
 virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html
 virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html
 virtual/gpu/fast/canvas/canvas-textMetrics-width.html
-virtual/jxl-enabled/images/jxl/jxl-images.html
 virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-no-child-yes-port.sub.https.html
 virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-no-port.sub.https.html
 virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-yes-port.sub.https.html
diff --git a/third_party/blink/web_tests/SmokeTests/highdpi b/third_party/blink/web_tests/SmokeTests/highdpi
index c62be95..2828fa0 100644
--- a/third_party/blink/web_tests/SmokeTests/highdpi
+++ b/third_party/blink/web_tests/SmokeTests/highdpi
@@ -1341,7 +1341,6 @@
 images/directly-composited-image-orientation.html
 images/drag-image.html
 images/jpeg-with-color-profile.html
-images/jxl/jxl-images.html
 images/png-suite/test.html
 images/png-with-color-profile.html
 images/yuv-decode-eligible/color-profile-border-radius.html
@@ -1578,7 +1577,6 @@
 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html
 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/jpeg-missing-eoi.html
 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html
-virtual/jxl-enabled/images/jxl/jxl-images.html
 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/continuous-platform-wheelevent-in-scrolling-div.html
 virtual/off-main-thread-css-paint/http/tests/csspaint/border-color.html
 virtual/off-main-thread-css-paint/http/tests/csspaint/entire-canvas-visible-zoom.html
diff --git a/third_party/blink/web_tests/TestExpectations b/third_party/blink/web_tests/TestExpectations
index 40e6321..9bd31cc7 100644
--- a/third_party/blink/web_tests/TestExpectations
+++ b/third_party/blink/web_tests/TestExpectations
@@ -5136,12 +5136,6 @@
 # Started failing after rolling new version of check-layout-th.js
 css3/flexbox/perpendicular-writing-modes-inside-flex-item.html [ Failure ]
 
-# JXL tests fail due to rounding error differences.
-# TODO(https://crbug.com/1274220): Rebaseline all images once new tone mapping
-# lands.
-crbug.com/1210658 virtual/jxl-enabled/images/jxl/jxl-images.html [ Crash Failure Pass Timeout ]
-crbug.com/1358616 virtual/jxl-enabled/images/jxl/progressive.html [ Crash Failure Pass Timeout ]
-
 # Temporarily disabled to unblock https://crrev.com/c/3099011
 crbug.com/1199701 http/tests/devtools/console/console-big-array.js [ Crash Failure Pass Timeout ]
 
diff --git a/third_party/blink/web_tests/VirtualTestSuites b/third_party/blink/web_tests/VirtualTestSuites
index 4fdcc7d..4b882ba7 100644
--- a/third_party/blink/web_tests/VirtualTestSuites
+++ b/third_party/blink/web_tests/VirtualTestSuites
@@ -333,15 +333,6 @@
     "expires": "Jul 1, 2023"
   },
   {
-    "prefix": "jxl-enabled",
-    "platforms": ["Linux", "Mac", "Win"],
-    "bases": ["http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl.js",
-              "images/jxl"],
-    "exclusive_tests": ["http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl.js"],
-    "args": ["--enable-features=JXL"],
-    "expires": "Jul 1, 2023"
-  },
-  {
     "prefix": "scalefactor150",
     "platforms": ["Linux", "Win"],
     "bases": ["fast/events/synthetic-events",
diff --git a/third_party/blink/web_tests/flag-specific/highdpi/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/flag-specific/highdpi/images/jxl/jxl-images-expected.png
deleted file mode 100644
index c86be81..0000000
--- a/third_party/blink/web_tests/flag-specific/highdpi/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/flag-specific/highdpi/virtual/jxl-enabled/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/flag-specific/highdpi/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
deleted file mode 100644
index 3f8d79f..0000000
--- a/third_party/blink/web_tests/flag-specific/highdpi/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl-expected.txt b/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl-expected.txt
deleted file mode 100644
index d5f0a767..0000000
--- a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl-expected.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Tests the Emulation.setDisabledImageTypes method for JPEG XL.
-With emulation (jxl enabled):
-Expected jxl image: http://127.0.0.1:8000/inspector-protocol/emulation/resources/test.jxl
-Image request Accept header: image/jxl,image/avif,image/apng,image/svg+xml,image/*,*/*;q=0.8
-With emulation (jxl disabled):
-Expected png image: http://127.0.0.1:8000/inspector-protocol/emulation/resources/test.png
-Image request Accept header: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8
-With emulation (jxl enabled):
-Expected jxl image: http://127.0.0.1:8000/inspector-protocol/emulation/resources/test.jxl
-Image request Accept header: image/jxl,image/avif,image/apng,image/svg+xml,image/*,*/*;q=0.8
-With emulation (jxl disabled):
-Expected png image: http://127.0.0.1:8000/inspector-protocol/emulation/resources/test.png
-Image request Accept header: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8
-
diff --git a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl.js b/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl.js
deleted file mode 100644
index f5b8c2e..0000000
--- a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-set-disabled-image-types-jxl.js
+++ /dev/null
@@ -1,50 +0,0 @@
-(async function(testRunner) {
-  const {page, session, dp} =
-      await testRunner.startBlank('Tests the Emulation.setDisabledImageTypes method for JPEG XL.');
-
-  await dp.Page.enable();
-  await dp.Network.enable();
-
-  let requestEvents = [];
-  dp.Network.onRequestWillBeSent(event => requestEvents.push(event));
-
-  await dp.Emulation.setDisabledImageTypes({ imageTypes: ['webp'] });
-
-  testRunner.log('With emulation (jxl enabled):');
-  await page.navigate(testRunner.url('resources/image-jxl-fallback-img.html'));
-  testRunner.log('Expected jxl image: ' + await session.evaluate(() => document.querySelector('img').currentSrc));
-  let jxlRequest = requestEvents.map(event => event.params.request).find(request => request.url.endsWith('test.jxl'));
-  testRunner.log('Image request Accept header: ' + jxlRequest.headers.Accept);
-
-  requestEvents = [];
-
-  testRunner.log('With emulation (jxl disabled):');
-  await dp.Emulation.setDisabledImageTypes({ imageTypes: ['jxl'] });
-  dp.Page.reload({ ignoreCache: true });
-  await dp.Page.onceLoadEventFired();
-  testRunner.log('Expected png image: ' + await session.evaluate(() => document.querySelector('img').currentSrc));
-  let pngRequest = requestEvents.map(event => event.params.request).find(request => request.url.endsWith('test.png'));
-  testRunner.log('Image request Accept header: ' + pngRequest.headers.Accept);
-
-  requestEvents = [];
-
-  await dp.Emulation.setDisabledImageTypes({ imageTypes: ['webp'] });
-
-  testRunner.log('With emulation (jxl enabled):');
-  await page.navigate(testRunner.url('resources/image-jxl-fallback-picture.html'));
-  testRunner.log('Expected jxl image: ' + await session.evaluate(() => document.querySelector('img').currentSrc));
-  jxlRequest = requestEvents.map(event => event.params.request).find(request => request.url.endsWith('test.jxl'));
-  testRunner.log('Image request Accept header: ' + jxlRequest.headers.Accept);
-
-  requestEvents = [];
-
-  testRunner.log('With emulation (jxl disabled):');
-  await dp.Emulation.setDisabledImageTypes({ imageTypes: ['jxl'] });
-  dp.Page.reload({ ignoreCache: true });
-  await dp.Page.onceLoadEventFired();
-  testRunner.log('Expected png image: ' + await session.evaluate(() => document.querySelector('img').currentSrc));
-  pngRequest = requestEvents.map(event => event.params.request).find(request => request.url.endsWith('test.png'));
-  testRunner.log('Image request Accept header: ' + pngRequest.headers.Accept);
-
-  testRunner.completeTest();
-})
\ No newline at end of file
diff --git a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-img.html b/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-img.html
deleted file mode 100644
index 83e49269..0000000
--- a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-img.html
+++ /dev/null
@@ -1 +0,0 @@
-<img src="test.jxl" onerror="src='test.png'">
diff --git a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-picture.html b/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-picture.html
deleted file mode 100644
index 4c83566..0000000
--- a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/image-jxl-fallback-picture.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<picture>
-  <source srcset="test.jxl" type="image/jxl">
-  <img src="test.png">
-</picture>
diff --git a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/test.jxl b/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/test.jxl
deleted file mode 100644
index 8d3da832..0000000
--- a/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/resources/test.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/images/jxl/jxl-images-expected.png
deleted file mode 100644
index ee126ac..0000000
--- a/third_party/blink/web_tests/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/jxl/jxl-images.html b/third_party/blink/web_tests/images/jxl/jxl-images.html
deleted file mode 100644
index a7f88a9..0000000
--- a/third_party/blink/web_tests/images/jxl/jxl-images.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<img src="../resources/jxl/3x3a_gbr_lossless.jxl">
-<img src="../resources/jxl/3x3a_gbr_lossy.jxl">
-<img src="../resources/jxl/3x3a_pq_lossless.jxl">
-<img src="../resources/jxl/3x3a_pq_lossy.jxl">
-<img src="../resources/jxl/3x3a_srgb_lossless.jxl">
-<img src="../resources/jxl/3x3a_srgb_lossy.jxl">
-<img src="../resources/jxl/3x3_gbr_lossless.jxl">
-<img src="../resources/jxl/3x3_gbr_lossy.jxl">
-<img src="../resources/jxl/3x3_pq_lossless.jxl">
-<img src="../resources/jxl/3x3_pq_lossy.jxl">
-<img src="../resources/jxl/3x3_srgb_lossless.jxl">
-<img src="../resources/jxl/3x3_srgb_lossy.jxl">
-<img src="../resources/jxl/alpha-large-dice.jxl">
-<img src="../resources/jxl/alpha-lossless.jxl">
-<img src="../resources/jxl/blue-10-lossless.jxl">
-<img src="../resources/jxl/green-10-lossless.jxl">
-<img src="../resources/jxl/icc-grb2.jxl">
-<img src="../resources/jxl/icc-grb.jxl">
-<img src="../resources/jxl/icc-v2-gbr.jxl">
-<img src="../resources/jxl/red-10-container.jxl">
-<img src="../resources/jxl/red-10-default.jxl">
-<img src="../resources/jxl/red-10-lossless.jxl">
diff --git a/third_party/blink/web_tests/images/jxl/progressive-expected.png b/third_party/blink/web_tests/images/jxl/progressive-expected.png
deleted file mode 100644
index 23927820..0000000
--- a/third_party/blink/web_tests/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/jxl/progressive.html b/third_party/blink/web_tests/images/jxl/progressive.html
deleted file mode 100644
index 6d368cc..0000000
--- a/third_party/blink/web_tests/images/jxl/progressive.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<img src="../resources/jxl/partial_black.jxl">
-</body>
-</html>
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3.png b/third_party/blink/web_tests/images/resources/jxl/3x3.png
deleted file mode 100644
index 96f86420..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossless.jxl
deleted file mode 100644
index 36f666e..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossy.jxl
deleted file mode 100644
index 84da377..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_gbr_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossless.jxl
deleted file mode 100644
index 2600639..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossy.jxl
deleted file mode 100644
index 6a8d25b..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_hlg_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossless.jxl
deleted file mode 100644
index eed73f8..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossy.jxl
deleted file mode 100644
index d14d489..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_pq_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossless.jxl
deleted file mode 100644
index 5e52b33..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossy.jxl
deleted file mode 100644
index ad199fb..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3_srgb_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a.png b/third_party/blink/web_tests/images/resources/jxl/3x3a.png
deleted file mode 100644
index 338887e..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossless.jxl
deleted file mode 100644
index 06a78bc..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossy.jxl
deleted file mode 100644
index d2ad6d4..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_gbr_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossless.jxl
deleted file mode 100644
index 2b51695..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossy.jxl
deleted file mode 100644
index aba9206..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_hlg_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossless.jxl
deleted file mode 100644
index b35e9de1..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossy.jxl
deleted file mode 100644
index 0fd9344d..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_pq_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossless.jxl
deleted file mode 100644
index 5b3d75e..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossy.jxl
deleted file mode 100644
index 4344458..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/3x3a_srgb_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/README.md b/third_party/blink/web_tests/images/resources/jxl/README.md
deleted file mode 100644
index 02776ca9..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/README.md
+++ /dev/null
@@ -1,79 +0,0 @@
-# JPEG XL Test files
-
-## How to generate the test set
-
-We assume to have a the following images (from
-`third_party/blink/web_tests/images/resources/`) available:
-```
-red-10.png
-green-10.png
-blue-10.png
-png_per_row_alpha.png
-icc-v2-gbr.jpg
-dice.png
-animated.gif
-jxl/3x3.png
-jxl/3x3a.png
-```
-Then we run:
-```
-cjxl red-10.png red-10-default.jxl
-cjxl --container red-10.png red-10-container.jxl
-cjxl -d 0 red-10.png red-10-lossless.jxl
-cjxl -d 0 green-10.png green-10-lossless.jxl
-cjxl -d 0 blue-10.png blue-10-lossless.jxl
-cjxl -d 0 png_per_row_alpha.png alpha-lossless.jxl
-cjxl icc-v2-gbr.jpg icc-v2-gbr.jxl
-cjxl -d 0 dice.png alpha-large-dice.jxl
-
-cjxl 3x3.png temp.jxl -d 0
-djxl temp.jxl 3x3_srgb.png
-cjxl 3x3_srgb.png 3x3_srgb_lossy.jxl -d 0.1 -e 7
-cjxl 3x3_srgb.png 3x3_srgb_lossless.jxl -d 0
-
-cjxl 3x3a.png temp.jxl -d 0
-djxl temp.jxl 3x3a_srgb.png
-cjxl 3x3a_srgb.png 3x3a_srgb_lossy.jxl -d 0.1 -e 7
-cjxl 3x3a_srgb.png 3x3a_srgb_lossless.jxl -d 0
-
-cjxl 3x3.png temp.jxl -x color_space=RGB_D65_202_Rel_PeQ -d 0
-djxl temp.jxl 3x3_pq.png
-cjxl 3x3_pq.png 3x3_pq_lossy.jxl -d 0.1 -e 7
-cjxl 3x3_pq.png 3x3_pq_lossless.jxl -d 0
-
-cjxl 3x3a.png temp.jxl -x color_space=RGB_D65_202_Rel_PeQ -d 0
-djxl temp.jxl 3x3a_pq.png
-cjxl 3x3a_pq.png 3x3a_pq_lossy.jxl -d 0.1 -e 7
-cjxl 3x3a_pq.png 3x3a_pq_lossless.jxl -d 0
-
-cjxl 3x3.png temp.jxl -x color_space=RGB_D65_202_Rel_HLG -d 0
-djxl temp.jxl 3x3_hlg.png
-cjxl 3x3_hlg.png 3x3_hlg_lossy.jxl -d 0.1 -e 7
-cjxl 3x3_hlg.png 3x3_hlg_lossless.jxl -d 0
-
-cjxl 3x3a.png temp.jxl -x color_space=RGB_D65_202_Rel_HLG -d 0
-djxl temp.jxl 3x3a_hlg.png
-cjxl 3x3a_hlg.png 3x3a_hlg_lossy.jxl -d 0.1 -e 7
-cjxl 3x3a_hlg.png 3x3a_hlg_lossless.jxl -d 0
-
-convert icc-v2-gbr.jpg icc-v2-gbr.icc
-cjxl 3x3.png temp.jxl -x icc_pathname=icc-v2-gbr.icc -d 0
-djxl temp.jxl 3x3_gbr.png
-cjxl 3x3_gbr.png 3x3_gbr_lossy.jxl -d 0.1 -e 7
-cjxl 3x3_gbr.png 3x3_gbr_lossless.jxl -d 0
-
-cjxl 3x3a.png temp.jxl -x icc_pathname=icc-v2-gbr.icc -d 0
-djxl temp.jxl 3x3a_gbr.png
-cjxl 3x3a_gbr.png 3x3a_gbr_lossy.jxl -d 0.1 -e 7
-cjxl 3x3a_gbr.png 3x3a_gbr_lossless.jxl -d 0
-
-cjxl animated.gif animated.jxl
-
-for i in $(seq 0 9); do J=$(printf '%03d' $i); convert -fill black -size 500x500 -font 'Courier' -pointsize 72 -gravity center label:$J $J.png; done
-convert -delay 20 *.png count.gif
-cjxl count.gif count.jxl
-
-convert -size 680x420 xc:black black.png
-cjxl --group_order 1 -d 0 black.png black.jxl
-dd bs=1 count=46 if=black.jxl of=partial_black.jxl
-```
diff --git a/third_party/blink/web_tests/images/resources/jxl/alpha-large-dice.jxl b/third_party/blink/web_tests/images/resources/jxl/alpha-large-dice.jxl
deleted file mode 100644
index 5e130c5..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/alpha-large-dice.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/alpha-lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/alpha-lossless.jxl
deleted file mode 100644
index 2b9bcc89..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/alpha-lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/animated.jxl b/third_party/blink/web_tests/images/resources/jxl/animated.jxl
deleted file mode 100644
index fe928c2..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/animated.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/blue-10-lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/blue-10-lossless.jxl
deleted file mode 100644
index 31afda54..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/blue-10-lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/count.jxl b/third_party/blink/web_tests/images/resources/jxl/count.jxl
deleted file mode 100644
index 7c06823f..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/count.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/green-10-lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/green-10-lossless.jxl
deleted file mode 100644
index ef85a75b..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/green-10-lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/icc-grb.jxl b/third_party/blink/web_tests/images/resources/jxl/icc-grb.jxl
deleted file mode 100644
index 42b87f1..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/icc-grb.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/icc-grb2.jxl b/third_party/blink/web_tests/images/resources/jxl/icc-grb2.jxl
deleted file mode 100644
index fd95fb88..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/icc-grb2.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/icc-v2-gbr.jxl b/third_party/blink/web_tests/images/resources/jxl/icc-v2-gbr.jxl
deleted file mode 100644
index 6bc0079..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/icc-v2-gbr.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/partial_black.jxl b/third_party/blink/web_tests/images/resources/jxl/partial_black.jxl
deleted file mode 100644
index a8097298..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/partial_black.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossless.jxl
deleted file mode 100644
index c420e6e..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossy.jxl
deleted file mode 100644
index 7d7b9ca..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_icc_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossless.jxl
deleted file mode 100644
index aa138d16..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossy.jxl b/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossy.jxl
deleted file mode 100644
index 548408d..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/pq_gradient_lossy.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/red-10-container.jxl b/third_party/blink/web_tests/images/resources/jxl/red-10-container.jxl
deleted file mode 100644
index eb4d053d..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/red-10-container.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/red-10-default.jxl b/third_party/blink/web_tests/images/resources/jxl/red-10-default.jxl
deleted file mode 100644
index aa57cfe..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/red-10-default.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/images/resources/jxl/red-10-lossless.jxl b/third_party/blink/web_tests/images/resources/jxl/red-10-lossless.jxl
deleted file mode 100644
index 5d9f5a3..0000000
--- a/third_party/blink/web_tests/images/resources/jxl/red-10-lossless.jxl
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/jxl-images-expected.png
deleted file mode 100644
index 80da68a..0000000
--- a/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/progressive-expected.png b/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/progressive-expected.png
deleted file mode 100644
index 502e1984..0000000
--- a/third_party/blink/web_tests/platform/linux/virtual/exotic-color-space/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png
deleted file mode 100644
index be46fb6..0000000
--- a/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/progressive-expected.png b/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/progressive-expected.png
deleted file mode 100644
index 3f15d66f..0000000
--- a/third_party/blink/web_tests/platform/linux/virtual/gpu-rasterization/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/mac-mac11-arm64/virtual/jxl-enabled/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/platform/mac-mac11-arm64/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
deleted file mode 100644
index c0c5e22..0000000
--- a/third_party/blink/web_tests/platform/mac-mac11-arm64/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/mac/virtual/exotic-color-space/images/jxl/progressive-expected.png b/third_party/blink/web_tests/platform/mac/virtual/exotic-color-space/images/jxl/progressive-expected.png
deleted file mode 100644
index 910cb6a..0000000
--- a/third_party/blink/web_tests/platform/mac/virtual/exotic-color-space/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/mac/virtual/gpu-rasterization/images/jxl/progressive-expected.png b/third_party/blink/web_tests/platform/mac/virtual/gpu-rasterization/images/jxl/progressive-expected.png
deleted file mode 100644
index 224837d..0000000
--- a/third_party/blink/web_tests/platform/mac/virtual/gpu-rasterization/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/platform/mac/virtual/jxl-enabled/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/platform/mac/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
deleted file mode 100644
index 89d8ad93..0000000
--- a/third_party/blink/web_tests/platform/mac/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/jxl-images-expected.png
deleted file mode 100644
index e8c7f6f..0000000
--- a/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/progressive-expected.png b/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/progressive-expected.png
deleted file mode 100644
index 910cb6a..0000000
--- a/third_party/blink/web_tests/virtual/exotic-color-space/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png
deleted file mode 100644
index 76c0abf..0000000
--- a/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/progressive-expected.png b/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/progressive-expected.png
deleted file mode 100644
index 224837d..0000000
--- a/third_party/blink/web_tests/virtual/gpu-rasterization/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/jxl-enabled/README.md b/third_party/blink/web_tests/virtual/jxl-enabled/README.md
deleted file mode 100644
index a087e74..0000000
--- a/third_party/blink/web_tests/virtual/jxl-enabled/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-This suite runs the tests with
---enable-features=JXL
-
-See the issue for more details:
-https://crbug.com/1178058
diff --git a/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/jxl-images-expected.png b/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
deleted file mode 100644
index 6e0d5716..0000000
--- a/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/jxl-images-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/progressive-expected.png b/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/progressive-expected.png
deleted file mode 100644
index bedff1f..0000000
--- a/third_party/blink/web_tests/virtual/jxl-enabled/images/jxl/progressive-expected.png
+++ /dev/null
Binary files differ
diff --git a/third_party/libjxl/BUILD.gn b/third_party/libjxl/BUILD.gn
deleted file mode 100644
index 6635c3c..0000000
--- a/third_party/libjxl/BUILD.gn
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2020 The Chromium Authors
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Import list of source files and flags from the jpeg-xl project.
-import("src/lib/lib.gni")
-
-# This config is applied to targets that depend on libjxl.
-config("libjxl_external_config") {
-  include_dirs = [
-    # Path to the public headers.
-    "src/lib/include",
-
-    # Configuration headers normally generated by the cmake build system.
-    "gen_headers",
-  ]
-}
-
-source_set("libjxl") {
-  sources = rebase_path(libjxl_dec_sources, ".", "src/lib")
-
-  cflags_cc = [
-    "-Wno-shadow",
-    "-Wno-unused-function",
-  ]
-
-  defines = libjxl_version_defines + [
-              "JPEGXL_ENABLE_SKCMS=1",
-
-              # Disabling decode-to-JPEG bytes in the library removes about 20%
-              # of the binary size (as measured in android arm builds).
-              # Transcoding back to JPEG is not used in Chrome, only decoding to
-              # pixels is used even for files that were originally transcoded
-              # *from* JPEG.
-              "JPEGXL_ENABLE_TRANSCODE_JPEG=0",
-            ]
-
-  if (is_official_build) {
-    # Disable assertion messages, saving about 6 kB in android.
-    defines += [ "JXL_DEBUG_ON_ABORT=0" ]
-  }
-
-  include_dirs = [
-    "src",
-    "//third_party/skia/include/third_party/skcms",  # for "skcms.h"
-  ]
-
-  deps = [
-    "//skia:skcms",
-    "//third_party/brotli:dec",
-    "//third_party/highway:libhwy",
-  ]
-
-  public_configs = [ ":libjxl_external_config" ]
-}
diff --git a/third_party/libjxl/DIR_METADATA b/third_party/libjxl/DIR_METADATA
deleted file mode 100644
index 5b7bb9cc..0000000
--- a/third_party/libjxl/DIR_METADATA
+++ /dev/null
@@ -1,4 +0,0 @@
-
-monorail: {
-  component: "Internals>Images>Codecs"
-}
diff --git a/third_party/libjxl/LICENSE b/third_party/libjxl/LICENSE
deleted file mode 100644
index c66034b..0000000
--- a/third_party/libjxl/LICENSE
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright (c) the JPEG XL Project Authors.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice, this
-   list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice,
-   this list of conditions and the following disclaimer in the documentation
-   and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holder nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/third_party/libjxl/OWNERS b/third_party/libjxl/OWNERS
deleted file mode 100644
index 4a4b08e2..0000000
--- a/third_party/libjxl/OWNERS
+++ /dev/null
@@ -1,9 +0,0 @@
-# Owners:
-noel@chromium.org
-scroggo@google.com
-
-# Reviewers:
-# eustas@chromium.org
-# firsching@google.com
-# sboukortt@google.com
-# veluca@google.com
diff --git a/third_party/libjxl/README.chromium b/third_party/libjxl/README.chromium
deleted file mode 100644
index ab28920..0000000
--- a/third_party/libjxl/README.chromium
+++ /dev/null
@@ -1,15 +0,0 @@
-Name: JPEG XL image decoder library
-Short Name: libjxl
-URL: https://github.com/libjxl/libjxl
-Version: 0.7rc
-Date: 2022-08-24
-Revision: 3e246a860ea6d510d91ceca5413dcc50e8c41dd9
-License: BSD 3-Clause
-Security Critical: yes
-CPEPrefix: cpe:/a:libjxl_project:libjxl:0.7rc
-
-Description:
-The reference implementation for the JPEG XL image encoder/decoder.
-
-Local Modifications:
-None. Only decoder-side is compiled.
diff --git a/third_party/libjxl/gen_headers/jxl/jxl_export.h b/third_party/libjxl/gen_headers/jxl/jxl_export.h
deleted file mode 100644
index 6fa2155..0000000
--- a/third_party/libjxl/gen_headers/jxl/jxl_export.h
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2020 The Chromium Authors
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef THIRD_PARTY_LIBJXL_GEN_HEADERS_JXL_JXL_EXPORT_H_
-#define THIRD_PARTY_LIBJXL_GEN_HEADERS_JXL_JXL_EXPORT_H_
-
-#define JXL_EXPORT
-#define JXL_DEPRECATED
-
-#endif  // THIRD_PARTY_LIBJXL_GEN_HEADERS_JXL_JXL_EXPORT_H_
diff --git a/tools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json b/tools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json
index acefbb9..c757576d 100644
--- a/tools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json
+++ b/tools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json
@@ -6,9 +6,9 @@
   ],
   "requests": "{\"QueryTestResults/{\\\"invocations\\\": [\\\"invocations/build-8802540674494294657\\\"], \\\"readMask\\\": {\\\"paths\\\": [\\\"test_id\\\", \\\"test_metadata\\\"]}, \\\"pageSize\\\": 1000, \\\"predicate\\\": {\\\"testIdRegexp\\\": \\\".*virtual/scalefactor200/css3/filters/composited-layer-bounds-after-sw-blur-animation.html.*\\\"}}\": \"{\\\"testResults\\\":[{\\\"name\\\":\\\"invocations/task-chromium-swarm.appspot.com-5d718c9cd973c711/tests/ninja:%2F%2F:blink_web_tests%2Fvirtual%2Fscalefactor200%2Fcss3%2Ffilters%2Fcomposited-layer-bounds-after-sw-blur-animation.html/results/50f2f9ef-01110\\\",\\\"testId\\\":\\\"ninja://:blink_web_tests/virtual/scalefactor200/css3/filters/composited-layer-bounds-after-sw-blur-animation.html\\\",\\\"testMetadata\\\":{\\\"name\\\":\\\"virtual/scalefactor200/css3/filters/composited-layer-bounds-after-sw-blur-animation.html\\\",\\\"location\\\":{\\\"repo\\\":\\\"https://chromium.googlesource.com/chromium/src\\\",\\\"fileName\\\":\\\"//third_party/blink/web_tests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html\\\"}}}]}\\n\"}",
   "read_data": {
-    "third_party/blink/web_tests/TestExpectations": "# tags: [ Fuchsia Linux Mac Mac10.13 Mac10.14 Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Win Win10.20h2 Win11 ]\n# tags: [ Release Debug ]\n# results: [ Timeout Crash Pass Failure Skip ]\n\n# This is the main failure suppression file for Blink LayoutTests.\n# Further documentation:\n# https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_test_expectations.md\n\n# Intentional failures to test the layout test system.\nharness-tests/crash.html [ Crash ]\nharness-tests/timeout.html [ Timeout ]\nfast/harness/sample-fail-mismatch-reftest.html [ Failure ]\n\n# Expected to fail.\nexternal/wpt/infrastructure/reftest/legacy/reftest_and_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/legacy/reftest_cycle_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-1.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-4.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-5.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-6.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-7.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_mismatch_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-1.html [ Failure ]\naccessibility/slot-poison.html [ Failure ]\n\n# Expected to time out.\nexternal/wpt/infrastructure/expected-fail/timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_ref_timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_timeout.html [ Timeout ]\n\n# We don't support extracting fuzzy information from .ini files, which these\n# WPT infrastructure tests rely on.\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/reftest_fuzzy_chain_ini.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/fuzzy-ref-2.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_full.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_ref_only.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_short.html [ Failure ]\n\n# WPT HTTP/2 is not fully supported by run_web_tests.\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=https [ Failure ]\n\n# The following tests pass or fail depending on the underlying protocol (HTTP/1.1 vs HTTP/2).\n# The results of failures could be also different depending on the underlying protocol.\ncrbug.com/1048761 external/wpt/websockets/constructor/002.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-connecting.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-nested.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/readyState/003.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/unload-a-document/002.html?wss [ Failure Pass ]\n\n# Tests are flaky after a WPT import\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2 [ Failure Pass ]\n# Flaking on WebKit Linux MSAN\ncrbug.com/1207373 [ Linux ] external/wpt/uievents/order-of-events/mouse-events/mousemove-across.html [ Failure Pass ]\ncrbug.com/1339285 [ Linux ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Win ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Mac ] fast/loader/iframe-window-open-stealing-focus.html [ Pass Timeout ]\n\n# WPT Test harness doesn't deal with finding an about:blank ref test\ncrbug.com/1066130 external/wpt/infrastructure/assumptions/blank.html [ Failure ]\n\ncrbug.com/807686 crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]\n\n# The following tests need to remove the assumption that user activation is\n# available in child/sibling frames.  This assumption doesn't hold with User\n# Activation v2 (UAv2).\ncrbug.com/906791 external/wpt/fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html [ Timeout ]\n\n# These two are left over from crbug.com/881040, I rebaselined them twice and\n# they continue to fail.\ncrbug.com/881040 media/controls/lazy-loaded-style.html [ Failure Pass ]\n\n# With --enable-display-compositor-pixel-dump enabled by default, these three\n# tests fail. See crbug.com/887140 for more info.\ncrbug.com/887140 virtual/hdr/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/887140 virtual/hdr/color-profile-video.html [ Failure ]\ncrbug.com/887140 virtual/hdr/video-canvas-alpha.html [ Failure ]\n\n# Tested by paint/background/root-element-background-transparency.html for now.\nexternal/wpt/css/compositing/root-element-background-transparency.html [ Failure ]\n\n# ====== Synchronous, budgeted HTML parser tests from here ========================\n# See crbug.com/1254921 for details.\n# These tests either started failing outright, or became flaky, when the new HTML\n# parser was enabled. All of these are bugs/issues with the test itself.\n\n# Extra line info appears in the output in some cases.\ncrbug.com/1254932 http/tests/preload/meta-csp.html [ Failure ]\n\n# Extra box in the output:\ncrbug.com/1254933 css3/filters/filterRegions.html [ Failure ]\n\n# Script preloaded: No\ncrbug.com/1254940 http/tests/security/contentSecurityPolicy/nonces/scriptnonce-redirect.html [ Failure ]\n\n# Two paint failures:\ncrbug.com/1254943 paint/invalidation/overflow/resize-child-within-overflow.html [ Failure ]\ncrbug.com/1254943 fast/events/hit-test-counts.html [ Failure ]\n\n# Image isn't present:\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure Pass ]\n\n# Fails flakily or times out\ncrbug.com/1269536 [ Mac11 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\ncrbug.com/1269536 [ Mac12 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\n\n# Unknown media state flakiness (likely due to layout occuring earlier than expected):\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-candidate-insert-before.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-audio-constructor.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-from-document-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-src.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src.html [ Failure Pass ]\n\n# Very slow (~2 minutes) when DCHECKs are enabled, due to huge number of loop iterations.\n# The -3 variant additionally exposes a bug, but even once that's fixed the test is too slow.\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-3.html [ Failure Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-3.html [ Skip Timeout ]\n\n# ====== Synchronous, budgeted HTML parser tests to here ========================\n\n# ====== Timed HTML parser budget tests from here ========================\n# See crbug.com/1342718 for details.\n# These tests either started failing outright, or became flaky, when the HTML\n# parser switched to using a time based budget instead of a token based budget.\n# All of these are bugs/issues with the test itself.\n\ncrbug.com/1341693 [ Linux ] external/wpt/dom/nodes/MutationObserver-document.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-play.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html [ Failure Pass ]\ncrbug.com/1339293 external/wpt/content-security-policy/media-src/media-src-7_1_2.sub.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/content-security-policy/media-src/media-src-blocked.sub.html [ Failure Pass Timeout ]\ncrbug.com/1339293 [ Linux ] fast/frames/empty-frame-src.html [ Failure Pass ]\ncrbug.com/1339293 crbug.com/1347321 fast/frames/frame-scrolling-attribute.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/controls/rotated-video-has-right-panel-width.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/media-controls-overflow-hidden.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/scripting-1/the-script-element/execution-timing/029.html [ Failure Pass ]\ncrbug.com/1351106 [ Linux ] fast/frames/invalid-cols-rows-value.html [ Failure Pass ]\n\n# ====== Timed HTML parser budget tests to here ========================\n\ncrbug.com/1197502 [ Win ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass ]\n\n# ====== Site Isolation failures from here ======\n# See also third_party/blink/web_tests/virtual/not-site-per-process/README.md\n# Tests temporarily disabled with Site Isolation - uninvestigated bugs:\n# TODO(lukasza, alexmos): Burn down this list.\ncrbug.com/949003 http/tests/printing/cross-site-frame-scrolled.html [ Failure Pass ]\ncrbug.com/949003 http/tests/printing/cross-site-frame.html [ Failure Pass ]\n# ====== Site Isolation failures until here ======\n\n# ====== Oilpan-only failures from here ======\n# Most of these actually cause the tests to report success, rather than\n# failure. Expected outputs will be adjusted for the better once Oilpan\n# has been well and truly enabled always.\n# ====== Oilpan-only failures until here ======\n\n# ====== Paint team owned tests from here ======\n# The paint team tracks and triages its test failures, and keeping them colocated\n# makes tracking much easier.\n# Covered directories are:\n#  compositing except compositing/animations\n#  hittesting\n#  images, css3/images,\n#  paint\n#  svg\n#  canvas, fast/canvas\n#  transforms\n#  display-lock\n#  view-transition\n# Some additional bugs that are caused by painting problems are also within this section.\n\n# The tests happened to pass with two bugs canceled each other. Now they fail\n# with the first bug fixed. Will be fixed when the second bug is fixed (crrev.com/c/3752748).\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor-iframe.html [ Failure ]\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor.html [ Failure ]\n\n# These tests block fixes done in V8. The tests run on the V8 bots as well.\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.worker.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.worker.html [ Failure Pass ]\n\n\n# --- Skia roll test suppressions\n\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed.html [ Failure Pass ]\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed2.html [ Failure Pass ]\ncrbug.com/1354678 fast/css/transformed-mask.html [ Failure Pass ]\ncrbug.com/1354678 paint/invalidation/reflection/reflection-with-rotation.html [ Failure Pass ]\n\n# --- END Skia roll test suppresions\n\n\n# Sheriff on 2020-09-03\ncrbug.com/1124352 media/picture-in-picture/clear-after-request.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/controls/picture-in-picture-button.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/picture-in-picture-interstitial.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/css-selector.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/exit-picture-in-picture.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/picture-in-picture-element.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/shadow-dom.html [ Crash Pass ]\n\n# These tests require portals, and some require cross-origin portals.\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1093466 external/wpt/fetch/metadata/portal.https.sub.html [ Skip ]\ncrbug.com/1093466 external/wpt/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/devtools/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/inspector-protocol/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/portals/* [ Skip ]\ncrbug.com/1093466 wpt_internal/portals/* [ Skip ]\ncrbug.com/1093466 virtual/portals/external/wpt/fetch/metadata/portal.https.sub.html [ Pass ]\ncrbug.com/1093466 virtual/portals/external/wpt/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/devtools/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/inspector-protocol/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/wpt_internal/portals/* [ Pass ]\n\n# These tests require fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1123606 wpt_internal/fenced_frame/* [ Skip ]\ncrbug.com/1123606 http/tests/fenced_frame/* [ Skip ]\ncrbug.com/1123606 virtual/fenced-frame-shadow-dom/* [ Pass ]\ncrbug.com/1123606 virtual/fenced-frame-mparch/* [ Pass ]\n\n# These fail due to subtle anti-aliasing differences cause by the fact that\n# <canvas> renders via IOSurface and OffscreenCanvas does not.\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-gradients-in-worker.html [ Failure ]\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-paths-in-worker.html [ Failure ]\n\n# Offscreen canvas tests that are flaky because sometimes the image is not rendered in time\n# See crbug.com/1315650\ncrbug.com/1322089 virtual/gpu/fast/canvas/OffscreenCanvas-MessageChannel-transfer.html [ Failure Pass ]\n\n# These tests require shared-storage and fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1218540 wpt_internal/shared_storage/* [ Skip ]\ncrbug.com/1218540 external/wpt/shared-storage/* [ Skip ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-mparch/* [ Pass ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-shadow-dom/* [ Pass ]\n\n# These tests require the experimental prerender feature.\n# See https://crbug.com/1126305.\ncrbug.com/1126305 external/wpt/speculation-rules/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/* [ Pass ]\ncrbug.com/1126305 wpt_internal/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/wpt_internal/prerender/* [ Pass ]\ncrbug.com/1126305 http/tests/inspector-protocol/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/http/tests/inspector-protocol/prerender/* [ Pass ]\n# These tests are tentatively disabled.\ncrbug.com/1302831 virtual/prerender/external/wpt/speculation-rules/prerender/service-workers.https.html [ Failure Skip Timeout ]\ncrbug.com/1302831 virtual/prerender/http/tests/inspector-protocol/prerender/prerender-ua-override.js [ Skip ]\ncrbug.com/1302831 virtual/prerender/wpt_internal/prerender/restriction-web-auth.https.html [ Skip ]\ncrbug.com/1302831 [ Mac10.14 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\ncrbug.com/1302831 [ Win10.20h2 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\n\n# These tests require the experimental speculative prefetch feature, and requires extra switches to enable content implementation of speculation rules prefetch.\n# This expectation and the virtual suite can be removed once that is enabled by default.\ncrbug.com/1343590 external/wpt/speculation-rules/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/* [ Pass ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/redirect-url.https.html [ Failure ]\ncrbug.com/1343590 http/tests/inspector-protocol/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/http/tests/inspector-protocol/prefetch/* [ Pass ]\n\n# This is not yet implemented. We cannot use -expected.txt since the output contains UUID URLs that change each run.\ncrbug.com/1355146 virtual/prefetch/external/wpt/speculation-rules/prefetch/referrer-policy.https.html [ Skip ]\n\n# These tests are flaky with BFCache, which is enabled by default.\ncrbug.com/1311546 http/tests/test-runner/back-forward.html [ Failure Pass ]\n\n# These tests require LazyEmbed, which is currently disabled by default.\ncrbug.com/1247131 virtual/automatic-lazy-frame-loading/wpt_internal/lazyembed/* [ Pass ]\ncrbug.com/1247131 wpt_internal/lazyembed/* [ Skip ]\n\n# Ref test with very minor differences. We need fuzzy matching for our ref tests,\n# or upstream this to WPT.\ncrbug.com/1185506 svg/text/textpath-pattern.svg [ Failure Pass ]\n\ncrbug.com/1225630 fast/multicol/infinite-height-causing-fractional-row-height-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/infinitely-tall-content-in-outer-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/insane-column-count-and-padding-nested-crash.html [ Skip ]\ncrbug.com/807395 fast/multicol/mixed-opacity-test.html [ Failure ]\ncrbug.com/1225630 fast/multicol/nested-very-tall-inside-short-crash.html [ Skip ]\n\n# Document transition tests\ncrbug.com/1276999 view-transition/* [ Skip ]\ncrbug.com/1316157 inspector-protocol/css/css-get-styles-for-view-transition.js [ Skip ]\ncrbug.com/1276999 wpt_internal/view-transition/* [ Skip ]\ncrbug.com/1276999 virtual/view-transition/* [ Pass ]\ncrbug.com/1276999 virtual/view-transition-wide-gamut/* [ Pass ]\n\ncrbug.com/1351556 virtual/view-transition-wide-gamut/wpt_internal/view-transition/commit-timeout-crash.html [ Failure Timeout ]\ncrbug.com/1351556 virtual/view-transition/view-transition/capture-callback-exception.html [ Failure ]\ncrbug.com/1351556 virtual/view-transition-wide-gamut/view-transition/capture-callback-exception.html [ Failure ]\n\n########## Ref tests can't be rebaselined ##########\ncrbug.com/619103 paint/invalidation/background/background-resize-width.html [ Failure Pass ]\n\ncrbug.com/784956 fast/history/frameset-repeated-name.html [ Failure Pass ]\n\n# These are both related to images not painting as expected, and are primarily CQ hidden flakes\ncrbug.com/1284609 images/image-load-reset-on-new-base.html [ Failure Pass ]\ncrbug.com/1271092 paint/invalidation/scroll/fixed-img-src-change-after-scroll.html [ Failure Pass ]\n\n########## Genuinely flaky ##########\ncrbug.com/624233 virtual/gpu-rasterization/images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/757605 virtual/gpu-rasterization/images/jpeg-yuv-progressive-image.html [ Failure Pass ]\n\n########## Bugs to fix ##########\n# This is a missing event and increasing the timeout or using run-after-layout-and-paint doesn't\n# seem to fix it.\ncrbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ Failure ]\n\ncrbug.com/845267 [ Mac ] http/tests/inspector-protocol/page/page-lifecycleEvents.js [ Failure Pass ]\ncrbug.com/1046784 http/tests/inspector-protocol/page/page-events-associated-isolation.js [ Failure Pass ]\n\n# Service Worker registration.update() Network Requests require more instrumentation\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\n\n# Looks like a failure to get a paint on time. Test could be changed to use runAfterLayoutAndPaint\n# instead of a timeout, which may fix things.\ncrbug.com/713049 images/color-profile-reflection.html [ Failure Pass ]\ncrbug.com/713049 [ Mac ] virtual/gpu-rasterization/images/color-profile-reflection.html [ Failure Pass Timeout ]\n\n# This test was attributed to site isolation but times out with or without it. Broken test?\ncrbug.com/1050826 external/wpt/mixed-content/gen/top.http-rp/opt-in/object-tag.https.html [ Skip Timeout ]\n\ncrbug.com/1098369 fast/canvas/OffscreenCanvas-copyImage.html [ Failure Pass ]\n\ncrbug.com/1106590 [ Mac ] virtual/gpu/fast/canvas/canvas-path-non-invertible-transform.html [ Crash Pass ]\n\ncrbug.com/1237275 fast/canvas/layers-lonebeginlayer.html [ Failure Pass ]\ncrbug.com/1237275 fast/canvas/layers-unmatched-beginlayer.html [ Failure Pass ]\n\n# Assorted WPT canvas tests failing\ncrbug.com/1093709 external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.resize.html [ Failure Pass ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.html [ Failure ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.shadow.html [ Failure ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.small.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.small.worker.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.NaN.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.negative.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.zero.html [ Pass Timeout ]\ncrbug.com/1170337 [ Mac10.13 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.zero.worker.html [ Skip Timeout ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html [ Failure ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html [ Failure ]\n\n# Off by one pixel error on ref test\ncrbug.com/1259367 [ Mac ] printing/offscreencanvas-webgl-printing.html [ Failure ]\n\n# These are testing deprecated features: https://github.com/web-platform-tests/wpt/issues/35662\nexternal/wpt/editing/run/inserttext.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/inserttext.html?2001-last [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1-1000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?2001-last [ Failure ]\nexternal/wpt/editing/run/insertlinebreak.html [ Failure ]\n\n# This test depends on synchronous focus() which does not exist (anymore?).\ncrbug.com/1074482 external/wpt/html/interaction/focus/the-autofocus-attribute/update-the-rendering.html [ Failure ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 [ Win ] external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1105278 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1104125 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\n\n# This test has a bug in it that prevents it from being able to deal with order\n# differences it claims to support.\ncrbug.com/1076129 external/wpt/service-workers/service-worker/clients-matchall-frozen.https.html [ Failure Pass ]\n\n# No support for un-prefixed background-clip: text or fill-color on text.\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-multi-line.html [ Failure ]\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-flex.html [ Failure ]\n\n# Flakily timing out or failing.\n# TODO(ccameron): Investigate this.\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\n\n# Flaky virtual/threaded-prefer-compositing tests\ncrbug.com/1309533 [ Win ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/idlharness.html [ Failure ]\ncrbug.com/1180479 [ Mac ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/scrollIntoView-smooth.html [ Failure Pass Timeout ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-added.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-correctness.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/mousewheel-scroll-interrupted.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Skip ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass Timeout ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snap-scrolls-visual-viewport.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-scrollbar-scrolling-thumb.html [ Failure Pass ]\ncrbug.com/1205673 [ Linux ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1205673 [ Win ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling.html [ Failure Pass ]\ncrbug.com/936891 virtual/threaded-prefer-compositing/fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Pass ]\ncrbug.com/1049599 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass Skip Timeout ]\ncrbug.com/1193920 virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass Timeout ]\ncrbug.com/1335172 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/1335172 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 [ Debug Mac12 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 virtual/threaded-prefer-compositing/fast/scrolling/overflow-scrollability.html [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/same-page-navigate.html [ Failure Pass ]\ncrbug.com/1279758 [ Win10.20h2 ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1279758 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1058244 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass Timeout ]\ncrbug.com/1058244 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]\n\ncrbug.com/915926 fast/events/touch/multi-touch-user-gesture.html [ Failure Pass ]\n\ncrbug.com/736052 [ Mac ] compositing/overflow/composited-scroll-with-fractional-translation.html [ Failure Pass ]\ncrbug.com/1303091 [ Linux ] compositing/overflow/paint-neg-z-order-descendants-into-scrolling-contents-layer.html [ Failure Pass ]\n\ncrbug.com/1303030 [ Linux ] paint/invalidation/forms/range-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# New OffscreenCanvas Tests that are breaking LayoutTest\n\ncrbug.com/980969 http/tests/input/discard-events-to-unstable-iframe.html [ Failure Pass ]\n\ncrbug.com/1086591 external/wpt/css/mediaqueries/aspect-ratio-004.html [ Failure ]\ncrbug.com/1086591 external/wpt/css/mediaqueries/device-aspect-ratio-002.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-005.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-006.html [ Failure ]\ncrbug.com/962417 external/wpt/css/mediaqueries/mq-negative-range-001.html [ Failure ]\ncrbug.com/1343368 external/wpt/css/mediaqueries/viewport-script-dynamic.html [ Failure ]\ncrbug.com/1345247 external/wpt/css/mediaqueries/prefers-color-scheme-svg-image.html [ Failure ]\n\ncrbug.com/815111 external/wpt/css/css-fill-stroke/paint-order-001.tentative.html [ Failure ]\n\ncrbug.com/1007134 external/wpt/intersection-observer/v2/delay-test.html [ Failure Pass ]\ncrbug.com/1004547 external/wpt/intersection-observer/cross-origin-iframe.sub.html [ Failure Pass ]\ncrbug.com/1007229 external/wpt/intersection-observer/same-origin-grand-child-iframe.sub.html [ Failure Pass ]\n\n# These fail when device_scale_factor is changed, but only for anti-aliasing:\ncrbug.com/968791 [ Mac ] virtual/scalefactor200/css3/filters/effect-blur-hw.html [ Failure Pass ]\ncrbug.com/968791 virtual/scalefactor200/css3/filters/filterRegions.html [ Failure ]\n\n# These appear to be actually incorrect at device_scale_factor 2.0:\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-002.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure ]\ncrbug.com/968791 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-004.html [ Failure ]\ncrbug.com/968791 [ Debug Mac11 ] virtual/scalefactor200/external/wpt/css/filter-effects/filters-test-brightness-003.html [ Failure ]\n\ncrbug.com/916825 external/wpt/css/filter-effects/filter-subregion-01.html [ Failure ]\n\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-combined-001.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-blur.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\n\ncrbug.com/1362524 external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\ncrbug.com/1362524 virtual/scalefactor200/external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\n\n# Could be addressed with fuzzy diff.\ncrbug.com/910537 external/wpt/svg/painting/marker-006.svg [ Failure ]\ncrbug.com/910537 external/wpt/svg/painting/marker-005.svg [ Failure ]\n\n# We don't yet implement context-fill and context-stroke\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-001.svg [ Failure ]\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-002.svg [ Failure ]\n\n# Unprefixed 'mask' ('mask-image', 'mask-border') support not yet implemented.\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-clip-exclude.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-local-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-remote-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image-hash.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-005.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-008.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-007.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-006.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-007.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-009.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-010.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-011.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-012.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-polygon-013.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-fillBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-geometryBox-2.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-marginBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3f.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3g.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-to-mask-type.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1e.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-5.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-6.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-7.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-border.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-padding.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-cover.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent-stretch.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent.html [ Failure ]\n\n# CSS clip-path: shape() not implemented\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/animations/clip-path-interpolation-shape.html [ Failure ]\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/parsing/clip-path-shape-parsing.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002-units.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-003.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-004.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-002.html [ Failure ]\n\n# CSS cascade layers\ncrbug.com/1277637 external/wpt/css/css-cascade/layer-stylesheet-sharing.html [ Failure ]\n\n# Fails, at a minimum, due to lack of support for CSS mask property in html elements\ncrbug.com/432153 external/wpt/svg/painting/reftests/display-none-mask.html [ Skip ]\n\n# WPT SVG Tests failing. Have not been investigated in all cases.\ncrbug.com/1184034 external/wpt/svg/linking/reftests/href-filter-element.html [ Failure ]\ncrbug.com/366559 external/wpt/svg/shapes/reftests/pathlength-003.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-side-001.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-shape-001.svg [ Failure ]\ncrbug.com/803360 external/wpt/svg/path/closepath/segment-completing.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-001.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-201.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-202.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-102.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-002.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-203.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-003.svg [ Failure ]\ncrbug.com/670177 external/wpt/svg/rendering/order/z-index.svg [ Failure ]\ncrbug.com/863355 [ Mac ] external/wpt/svg/shapes/reftests/pathlength-002.svg [ Failure ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-mpath-element.html [ Timeout ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-animate-element.html [ Timeout ]\ncrbug.com/1222395 external/wpt/svg/path/property/mpath.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/struct/reftests/use-inheritance-001.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/linking/reftests/use-descendant-combinator-003.html [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-022.svg [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-023.svg [ Failure ]\n\ncrbug.com/699040 external/wpt/svg/text/reftests/text-xml-space-001.svg [ Failure ]\n\n# WPT backgrounds and borders tests. Note that there are many more in NeverFixTests\n# that should be investigated (see crbug.com/780700)\ncrbug.com/1242416 [ Linux ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/1242416 [ Mac10.14 ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-004.xht [ Failure ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-006.xht [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-008.html [ Failure ]\ncrbug.com/1268426 external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/1268426 virtual/threaded/external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-009.html [ Failure ]\n\n# No emoji flag symbols available in the Windows system emoji font.\ncrbug.com/1272436 [ Win10.20h2 ] external/wpt/css/CSS2/text/bidi-flag-emoji-02.html [ Failure ]\n\n# ==== Regressions introduced by BlinkGenPropertyTrees =====\n# Reflection / mask ordering issue\ncrbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]\n# Incorrect scrollbar invalidation.\ncrbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]\ncrbug.com/887000 [ Mac10.14 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\n\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad-zoom-in-slow.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad.html [ Failure Pass ]\n\ncrbug.com/898394 virtual/android/url-bar/bottom-and-top-fixed-sticks-to-top.html [ Failure Timeout ]\n\ncrbug.com/1024151 http/tests/devtools/tracing/timeline-style/timeline-style-recalc-all-invalidator-types.js [ Failure Pass ]\n\ncrbug.com/1046784 http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Skip ]\n\n# Subpixel rounding differences that are incorrect.\ncrbug.com/997202 compositing/overflow/scaled-overflow.html [ Failure ]\n# Flaky subpixel AA difference (not necessarily incorrect, but flaky)\ncrbug.com/997202 virtual/threaded-no-composited-antialiasing/animations/skew-notsequential-compositor.html [ Failure Pass ]\n# Only one pixel difference (187,187,187) vs (188,188,188) occasionally.\ncrbug.com/1207960 [ Linux ] compositing/perspective-interest-rect.html [ Failure Pass ]\n\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg.html [ Failure ]\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg-clip.html [ Failure ]\n\ncrbug.com/1261905 external/wpt/css/css-transforms/backface-visibility-hidden-child-will-change-transform.html [ Failure ]\ncrbug.com/1261905 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-child-translate.html [ Failure ]\n\n# CompositeAfterPaint remaining failures\n# Outline paints incorrectly with columns. Needs LayoutNGBlockFragmentation.\ncrbug.com/1047358 [ Mac11 ] paint/pagination/composited-paginated-outlined-box.html [ Failure ]\n# Need to force the video to be composited in this case, or change pre-CAP\n# to match CAP behavior.\ncrbug.com/1108972 fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure ]\n# Cross-origin iframe layerization is buggy with empty iframes.\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-masked-pointer-events-mixed-2.sub.html [ Failure ]\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-complex-clip.sub.html [ Failure ]\ncrbug.com/1266900 [ Mac11 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1266900 [ Mac12 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-baseline-005.html [ Failure ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-suppress-baseline-001.html [ Failure ]\n\n# Needs rebaseline on Fuchsia.\ncrbug.com/1267498 [ Fuchsia ] paint/invalidation/svg/animated-svg-as-image-transformed-offscreen.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] transforms/transformed-caret.html [ Failure ]\n\n# WebGPU tests are only run on GPU bots, so they are skipped by default and run\n# separately from other Web Tests.\nexternal/wpt/webgpu/* [ Skip ]\nwpt_internal/webgpu/* [ Skip ]\n\ncrbug.com/829028 [ Mac ] compositing/gestures/gesture-tapHighlight-lines-and-float-in-multicol.html [ Failure ]\n\n# Requires support of the image-resolution CSS property\ncrbug.com/1086473 external/wpt/css/css-images/image-resolution/* [ Skip ]\n\n# Fail due to lack of fuzzy matching on Linux, Win and Mac platforms for WPT. The pixels in the pre-rotated reference\n# images do not exactly match the exif rotated images, probably due to jpeg decoding/encoding issues. Maybe\n# adjusting the image size to a multiple of 8 would fix this (so all jpeg blocks are solid color).\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties-border-radius.html [ Failure ]\ncrbug.com/997202 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio.html [ Failure ]\n\ncrbug.com/1159433 external/wpt/css/css-images/image-orientation/image-orientation-exif-png.html [ Failure ]\n\n# Ref results are wrong on the background and list case, not sure on border result\ncrbug.com/1076121 external/wpt/css/css-images/image-orientation/image-orientation-border-image.html [ Failure ]\n\n# object-fit is not applied for <object>/<embed>.\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-001.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-002.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006o.html [ Failure ]\n\n# Minor rendering difference to the ref image because of filtering or positioning.\n# (Possibly because of the use of 'image-rendering: crisp-edges' in some cases.)\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002p.html [ Failure ]\n\n# The following fails because we don't use the natural aspect ratio when applying\n# object-fit, and the images referenced don't have a natural size.\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003p.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004p.html [ Failure ]\n\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-png.html [ Failure ]\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-svg.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-043.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-044.html [ Failure ]\n\n# Not obviously incorrect (minor pixel differences, likely due to filtering).\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-space-10.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-1.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-2.html [ Failure ]\n\n# Passes with the WPT runner but not the internal one. (???)\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1a.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1b.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1c.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-3.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-4.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-5.html [ Failure ]\n\n# Off-by-one in some components.\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-6.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-7.html [ Failure ]\n\n# Failures due to pointerMove building synthetic events without button information (main thread only).\ncrbug.com/1056778 fast/scrolling/scrollbars/scrollbar-thumb-snapping.html [ Failure ]\n\n# Most of these fail due to subpixel differences, but a couple are real failures.\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-animation.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-border-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/compositing_simple_div.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-simple.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-stacking-context-001.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph-background-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-both-parent-and-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-svg.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-filter.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-script.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-interposed.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html [ Failure ]\ncrbug.com/1044742 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Win ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-text.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-mask.html [ Failure ]\n\ncrbug.com/1271275 external/wpt/css/compositing/background-blending/background-blend-mode-plus-lighter.html [ Failure ]\n\n# Minor pixel differences\ncrbug.com/1056492 external/wpt/svg/painting/reftests/marker-path-001.svg [ Failure ]\n\ncrbug.com/819617 [ Linux ] virtual/text-antialias/descent-clip-in-scaled-page.html [ Failure ]\n\ncrbug.com/1196414 compositing/composited-replaced-subpixel-location.html [ Failure ]\n\n# Triage of WPT css-paint-api tests\ncrbug.com/1299442 external/wpt/css/css-paint-api/custom-property-animation-on-main-thread.https.html [ Failure Pass ]\n\n# Flaky virtual/off-main-thread-css-paint tests. Skipping whole test suite for now.\n# Open issues: 1339051, 1288136, 1286944, 1254382, 1250666, 1233826, 1123886, 1345205, 1299442, 1288136\nvirtual/off-main-thread-css-paint/external/wpt/css/css-paint-api/* [ Skip ]\n\ncrbug.com/1339051 [ Linux ] virtual/off-main-thread-css-paint/http/tests/csspaint/shadow-scale-with-page-zoom.html [ Failure ]\n\n# ====== Paint team owned tests to here ======\n\n# WPT speculative-parsing tests failing\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-alternate-stylesheet.tentative.sub.html [ Crash Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-stylesheet-nomatch-media.tentative.sub.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-alternate-stylesheet.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-disabled.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-nomatch-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-font-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html [ Failure ]\n\ncrbug.com/1142958 external/wpt/layout-instability/absolute-child-shift-with-parent-will-change.html [ Failure ]\n\ncrbug.com/922249 virtual/android/fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure Pass ]\n\n# ====== Layout team owned tests from here ======\n\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-left-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-right-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-left-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-right-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-wrap-bfc-006.xht [ Failure ]\n\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floating-replaced-height-008.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-108.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-109.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-110.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-126.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-127.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-128.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-129.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-130.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-131.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-137.xht [ Skip ]\n\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-006.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-020.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-021.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-022.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-034.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-035.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-036.xht [ Skip ]\n\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-002.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-006.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-005.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-006.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-001.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-002.xht [ Failure ]\n\n#### external/wpt/css/css-sizing\ncrbug.com/1322062 external/wpt/css/css-sizing/aspect-ratio/fieldset-element-001.html [ Failure ]\ncrbug.com/1261306 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/slice-intrinsic-size.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/clone-intrinsic-size.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-038.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-039.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-042.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-043.html [ Failure ]\n\n# This one fails a DCHECK on Chromium infra but passes on wpt.fyi\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/grid-aspect-ratio-040.html [ Crash Pass ]\n\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-001.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-002.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-003.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-004.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-005.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-006.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-007.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-008.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-009.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-010.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-011.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-012.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-013.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-014.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-015.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-016.html [ Failure ]\n\ncrbug.com/1008951 external/wpt/css/css-text-decor/text-decoration-color.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-001.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-002.html [ Failure ]\n\ncrbug.com/936084 external/wpt/css/css-sizing/max-content-input-001.html [ Failure ]\ncrbug.com/918905 external/wpt/css/css-sizing/block-size-with-min-or-max-content-table-1b.html [ Failure Pass ]\n\n#### Unprefix and update the implementation for text-emphasis\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-color-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-007.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-008.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-010.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-012.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-016.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-021.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-filled-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-open-001.xht [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cf.html [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cn.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-shape-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-string-001.xht [ Failure ]\ncrbug.com/1281289 external/wpt/css/css-text/letter-spacing/letter-spacing-211.html [ Failure ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-073-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-072-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-071-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-020-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-076-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-075-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-021-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-022-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-074-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-019-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040-manual.html [ Skip ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001z.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004d.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-002.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-001.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-012c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/decorations-multiple-zorder.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/quirks-decor-noblur.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/standards-decor-noblur.html [ Failure ]\n\n# `text-decoration-skip-ink: all` not implemented yet.\ncrbug.com/1054656 external/wpt/css/css-text-decor/text-decoration-skip-ink-005.html [ Skip ]\n\n# `text-decoration: spelling|grammar-error`\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-grammar-error-001.html [ Failure ]\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-spelling-error-001.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-002.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-dynamic-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-002.optional.html [ Failure ]\n\ncrbug.com/722825 [ Linux ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\ncrbug.com/722825 [ Mac10.14 ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\n\ncrbug.com/846753 [ Mac ] http/tests/media/reload-after-dialog.html [ Failure Pass Timeout ]\n\n### external/wpt/css/css-tables/\ncrbug.com/708345 external/wpt/css/css-tables/height-distribution/extra-height-given-to-all-row-groups-004.html [ Failure ]\ncrbug.com/694374 external/wpt/css/css-tables/anonymous-table-ws-001.html [ Failure ]\ncrbug.com/174167 external/wpt/css/css-tables/visibility-collapse-colspan-003.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-max-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-min-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-size-001.html [ Failure ]\ncrbug.com/910725 external/wpt/css/css-tables/tentative/paint/overflow-hidden-table.html [ Failure ]\n\n# [css-contain]\n\ncrbug.com/880802 external/wpt/css/css-contain/contain-layout-017.html [ Failure ]\ncrbug.com/880802 external/wpt/css/css-contain/contain-paint-021.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-001.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-002.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-003.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-004.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-canvas.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-video.html [ Failure ]\n\n# [css-align]\n\ncrbug.com/722287 crbug.com/886585 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/599828 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-align-content-001.html [ Failure ]\n\n# [css-ui]\n# The `input-security` property not implemented yet.\ncrbug.com/1253732 external/wpt/css/css-ui/input-security-none-sensitive-text-input.html [ Failure ]\n# Layout team disagrees with the spec for this particular test.\ncrbug.com/591099 external/wpt/css/css-ui/text-overflow-015.html [ Failure ]\n# Various issues related to the 'appearance' property:\ncrbug.com/1284269 external/wpt/css/css-ui/compute-kind-widget-fallback-props-revert-001.html [ Failure ]\ncrbug.com/1284270 external/wpt/css/css-ui/compute-kind-widget-no-fallback-props-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-attachment-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-clip-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-image-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-origin-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-position-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-size-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-outset-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-repeat-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-slice-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-source-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-width-001.html [ Failure ]\n\n# [css-flexbox]\n\ncrbug.com/807497 external/wpt/css/css-flexbox/anonymous-flex-item-005.html [ Failure ]\ncrbug.com/1155036 external/wpt/css/css-flexbox/contain-size-layout-abspos-flex-container-crash.html [ Crash Pass ]\ncrbug.com/1311206 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-038.html [ Failure ]\ncrbug.com/1299946 [ Mac ] external/wpt/css/css-sizing/min-content-negative-margin-crash.html [ Pass Timeout ]\n\n# Needs \"new\" flex container intrinsic size algorithm.\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-max-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-min-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-004.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-006.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-009.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-border-sizing.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-content-sizing.html [ Failure ]\n\n# These require css-align-3 positional keywords that Blink doesn't yet support for flexbox.\ncrbug.com/1011718 external/wpt/css/css-flexbox/flexbox-safe-overflow-position-001.html [ Failure ]\n\n# We don't currently support visibility: collapse in flexbox\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-baseline-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-002.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-003.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse-line-wrapping.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse.html [ Failure ]\n\ncrbug.com/606208 external/wpt/css/css-flexbox/order/order-abs-children-painting-order.html [ Failure ]\n# We paint in an incorrect order when layers are present. Blocked on composite-after-paint.\ncrbug.com/370604 external/wpt/css/css-flexbox/flexbox-paint-ordering-002.xhtml [ Failure ]\n\n# We haven't implemented last baseline alignment.\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001a.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001b.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-006.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-007.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-008.xhtml [ Failure ]\n\n# [css-lists]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item.html [ Failure ]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item-2.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-005.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-004.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-001.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-002.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-003.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item.html [ Failure ]\ncrbug.com/1270480 external/wpt/css/css-lists/marker-webkit-text-fill-color.html [ Failure ]\ncrbug.com/1270483 external/wpt/css/css-lists/li-value-counter-reset-001.html [ Failure ]\ncrbug.com/947844 external/wpt/css/css-lists/list-item-definition.html [ Failure ]\n\ncrbug.com/1330383 external/wpt/css/css-lists/counter-list-item-slot-order.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-order-display-contents.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order-scoping.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order.html [ Failure ]\n\n# [css-counter-styles-3]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/prefix-suffix-syntax.html [ Failure ]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-syntax.html [ Failure ]\ncrbug.com/1168277 external/wpt/css/css-counter-styles/counter-style-at-rule/disclosure-styles.html [ Failure ]\ncrbug.com/1176315 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-function.html [ Failure ]\n\n# [css-overflow]\n# Incorrect WPT tests.\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-008.html [ Failure ]\ncrbug.com/993813 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-025.html [ Failure ]\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-029.html [ Failure ]\n\n# Maybe WontFix according to the bug\ncrbug.com/750992 external/wpt/css/css-overflow/margin-block-end-scroll-area-001.html [ Failure ]\n\n# Lack of support for font-language-override\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-01.html [ Failure ]\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-02.html [ Failure ]\n\n# Comparing variable font rendering to static font rendering fails on systems that use FreeType for variable fonts\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-underline-position-from-font-variable.html [ Failure ]\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-decoration-thickness-from-font-variable.html [ Failure ]\n# Windows 10 bot upgrade now causes these failures on Windows-10-18363\ncrbug.com/1140324 [ Win11 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1140324 [ Win10.20h2 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1143005 [ Win10.20h2 ] media/track/track-cue-rendering-vertical.html [ Failure ]\n\n# Skip spaces at the start and end of a line\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-001.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-002.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-003.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-004.html [ Failure ]\n\n# Tentative mansonry tests\ncrbug.com/1076027 external/wpt/css/css-grid/masonry/* [ Skip ]\n\n# external/wpt/css/css-fonts/... tests triaged away from the default WPT bug ID\ncrbug.com/1211460 external/wpt/css/css-fonts/alternates-order.html [ Failure ]\ncrbug.com/641861 [ Mac ] external/wpt/css/css-fonts/font-family-name-025.html [ Failure ]\ncrbug.com/443467 external/wpt/css/css-fonts/font-feature-settings-descriptor-01.html [ Failure ]\ncrbug.com/819816 external/wpt/css/css-fonts/font-kerning-03.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-009.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-010.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-011.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-02.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-03.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-04.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-05.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-06.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-07.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-08.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-09.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-10.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-11.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-12.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-13.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-14.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-15.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-16.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-17.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-18.html [ Failure ]\ncrbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/font-variant-ligatures-11.optional.html [ Failure ]\ncrbug.com/1212668 external/wpt/css/css-fonts/font-variant-position.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ar.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ur.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja-vs-zh.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ur-vs-ar.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-zh.html [ Failure ]\ncrbug.com/1269537 [ Mac ] fast/css-generated-content/quotes-lang.html [ Failure Pass ]\n\ncrbug.com/1317062 external/wpt/html/rendering/non-replaced-elements/phrasing-content-0/br-wbr-content/content-property.tentative.html [ Failure ]\n\n# Flaky layout tests\ncrbug.com/1356336 fast/block/float/shrink-to-avoid-float-complexity.html [ Failure Pass ]\n\n# ====== Layout team owned tests to here ======\n\n# ====== LayoutNG-only failures from here ======\n# LayoutNG - is a new layout system for Blink.\n\ncrbug.com/591099 css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/boundary-shaping/boundary-shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-010.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/835484 fast/css/outline-narrowLine.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-continuation.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-list-translate.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects.html [ Failure ]\ncrbug.com/889721 fast/inline/outline-continuations.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/font-format-support-color-cff2-vertical.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/whitespace/018.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/auto-sizing-orthogonal-flows.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/percentage-height-orthogonal-writing-modes.html [ Failure ]\ncrbug.com/835484 paint/invalidation/outline/inline-focus.html [ Failure ]\ncrbug.com/591099 paint/invalidation/scroll/fixed-under-composited-fixed-scrolled.html [ Failure ]\n\n# CSS Text failures\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-105.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-018.html [ Failure Pass ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-026.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-028.html [ Failure ]\ncrbug.com/602434 external/wpt/css/css-text/text-transform/text-transform-tailoring-001.html [ Failure ]\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-006.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-multiple-001.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-033.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-end-of-line-001.html [ Failure ]\ncrbug.com/1098801 external/wpt/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-013.html [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-discard-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-trim-trim-inner-001.xht [ Failure ]\n\n# LayoutNG ref-tests that need to be updated (cannot be rebaselined).\ncrbug.com/591099 [ Win ] virtual/text-antialias/ellipsis-with-self-painting-layer.html [ Failure ]\ncrbug.com/1098801 virtual/text-antialias/whitespace/whitespace-in-pre.html [ Failure ]\n\n# LayoutNG failures that needs to be triaged\ncrbug.com/591099 virtual/text-antialias/selection/selection-rect-line-height-too-small.html [ Failure ]\ncrbug.com/591099 fast/css-intrinsic-dimensions/width-avoid-floats.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/selection/inline-block-in-selection-root.html [ Failure ]\ncrbug.com/591099 [ Win ] editing/selection/paint-hyphen.html [ Failure Pass ]\ncrbug.com/591099 [ Mac11 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac12 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counter-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counters-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/CSS2/text/white-space-bidirectionality-001.xht [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-002.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-003.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00C.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/word-break/word-break-break-all-004.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-transforms/transform-inline-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-027.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-028.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-embed-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-isolate-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-normal-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-override-006.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-plaintext-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content-counter-010.htm [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content/content-quotes-07.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/forms/text/text-lineheight-centering.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/column-count-with-rules.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-big-line.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/box/hover-pseudo-borders.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-auto.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/flexbox/remove-inline-block-descendant-of-flex.html [ Failure ]\n\n# A few other lines for this test are commented out above to avoid conflicting expectations.\n# If they are not also fixed, reinstate them when removing these lines.\ncrbug.com/982211 fast/events/before-unload-return-value-from-listener.html [ Crash Pass Timeout ]\n\n# WPT css-writing-mode tests failing for various reasons beyond simple pixel diffs\ncrbug.com/1222818 external/wpt/css/css-writing-modes/logical-physical-mapping-001.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-005.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-003.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-014.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-013.html [ Failure ]\ncrbug.com/717862 [ Mac ] external/wpt/css/css-writing-modes/mongolian-orientation-002.html [ Failure ]\ncrbug.com/717862 external/wpt/css/css-writing-modes/mongolian-orientation-001.html [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\n\n### With LayoutNGFragmentItem enabled\ncrbug.com/982194 [ Win10.20h2 ] fast/writing-mode/border-image-vertical-lr.html [ Failure Pass ]\n\n# Known issues with offsetTop/offsetLeft in a fragmented context, see crbug.com/1347984\ncrbug.com/1347984 fragmentation/table-in-subpixel-fragmentainer.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-break-freely.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-with-thead.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions.html [ Failure ]\n\n### Tests failing with LayoutNGFlexFragmentation enabled:\ncrbug.com/660611 fast/multicol/flexbox/doubly-nested-with-zero-width-flexbox-and-forced-break-crash.html [ Skip ]\n\n### Tests failing with LayoutNGTableFragmentation enabled:\ncrbug.com/1078927 external/wpt/css/CSS2/floats-clear/clearance-containing-fragmented-float-crash.html [ Crash Failure ]\ncrbug.com/1295905 [ Mac11-arm64 ] external/wpt/css/css-break/table/sections-and-captions-mixed-order.html [ Failure ]\ncrbug.com/1078927 external/wpt/css/css-multicol/table/balance-table-with-border-spacing.html [ Failure ]\ncrbug.com/1078927 fast/multicol/table-row-height-increase.html [ Failure ]\ncrbug.com/1078927 fragmentation/border-spacing-break-before-unbreakable-row.html [ Failure ]\ncrbug.com/1078927 fragmentation/no-repeating-table-header-after-sections.html [ Failure ]\ncrbug.com/1352931 fragmentation/repeating-thead-under-repeating-thead.html [ Failure ]\n\n### Tests failing with LayoutNGPrinting enabled:\ncrbug.com/1121942 virtual/layout_ng_printing/printing/block-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-but-static-headers-and-footers.html [ Crash Failure ]\ncrbug.com/1121942 [ Debug Mac11 ] virtual/layout_ng_printing/printing/fixed-positioned-child-shouldnt-print.html [ Crash Failure Pass ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-clipped.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-overflow-scroll.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/flexbox-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/multi-page-background.html [ Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/webgl-oversized-printing.html [ Skip ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/width-overflow.html [ Failure ]\n\n# Tests passing with LayoutNGPrinting enabled:\nvirtual/layout_ng_printing/printing/fixedpos-in-multicol.html [ Pass ]\nvirtual/layout_ng_printing/printing/monolithic-at-page-block-end-horizontal-tb.html [ Pass ]\n\n### TablesNG\n# crbug.com/958381\n\n# TODO fails because cell size with only input element is 18px, not 15. line-height: 0px fixes it.\ncrbug.com/1171616 external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html [ Failure ]\n\n# Composited background painting leaves gaps.\ncrbug.com/958381 fast/table/border-collapsing/composited-cell-collapsed-border.html [ Failure ]\ncrbug.com/958381 fast/table/border-collapsing/composited-row-collapsed-border.html [ Failure ]\n\n# Rowspanned cell overflows TD visible rect.\ncrbug.com/958381 external/wpt/css/css-tables/visibility-collapse-rowspan-005.html [ Failure ]\n\n# Mac failures - antialiasing of ref\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-087.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-088.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-089.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-090.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-091.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-092.xht [ Failure ]\ncrbug.com/958381 [ Mac ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Win ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Mac ] fragmentation/single-line-cells-paginated-with-text.html [ Failure ]\n\ncrbug.com/1356256 fast/table/percent-widths-float.html [ Failure Pass ]\n\n# TablesNG ends\n\n### With LayoutNGView enabled:\n\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/flex-container-fragmentation-008.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/single-line-column-flex-fragmentation-029.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-001.xht [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-004.xht [ Failure ]\ncrbug.com/1294155 paint/invalidation/outline/outline-change-vertical-rl.html [ Failure ]\ncrbug.com/1294155 printing/fixed-positioned-overflow-scroll.html [ Failure ]\ncrbug.com/1294155 printing/multi-page-background.html [ Failure ]\ncrbug.com/1294155 [ Win ] printing/vertical-rl.html [ Failure ]\ncrbug.com/1294155 scrollbars/scrollbars-on-positioned-content.html [ Failure ]\n\n# ====== LayoutNG-only failures until here ======\n\n# ====== MathMLCore-only tests from here ======\n\n# These tests fail because some CSS properties affect MathML layout.\ncrbug.com/1227601 external/wpt/mathml/relations/css-styling/ignored-properties-001.html [ Failure Timeout ]\ncrbug.com/1227598 external/wpt/mathml/relations/css-styling/width-height-001.html [ Failure ]\n\n# These tests fail because we don't parse math display values according to the spec.\ncrbug.com/1127222 external/wpt/mathml/presentation-markup/mrow/legacy-mrow-like-elements-001.html [ Failure ]\n\n# This test fails on windows. It should really be made more reliable and take\n# into account fallback parameters.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/fractions/frac-1.html [ Failure ]\n\n# Tests failing only on certain platforms.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/operators/mo-axis-height-1.html [ Failure ]\ncrbug.com/6606 [ Mac ] external/wpt/mathml/relations/text-and-math/use-typo-metrics-1.html [ Failure ]\n\n# Additonal presentation-markup failures\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-5.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-7.html [ Failure ]\n\n# These tests fail because we don't support the MathML href attribute, which is\n# not part of MathML Core Level 1.\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-1.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-3.html [ Failure ]\n\n# These tests fail because they require full support for new text-transform\n# values and mathvariant attribute. Currently, we only support the new\n# text-transform: auto, use the UA rule for the <mi> element and map\n# mathvariant=\"normal\" to \"text-transform: none\".\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-case-sensitivity.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-initial.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-looped.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-monospace.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-stretched.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-tailed.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-basic-transforms-with-default-font.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck-font-style-font-weight.html [ Failure ]\n\n# ====== Style team owned tests from here ======\n\ncrbug.com/1353560 [ Linux ] external/wpt/css/css-content/quotes-001.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-006.html [ Failure ]\ncrbug.com/1341208 [ Mac ] external/wpt/css/css-content/quotes-007.html [ Skip ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-009.html [ Failure ]\ncrbug.com/1353560 [ Mac10.13 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 [ Mac10.14 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 external/wpt/css/css-content/quotes-013.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-014.html [ Failure ]\ncrbug.com/1353560 [ Mac10.15 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Win ] external/wpt/css/css-content/quotes-030.html [ Failure ]\ncrbug.com/1067277 external/wpt/css/css-content/element-replacement-on-replaced-element.tentative.html [ Failure ]\n\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-columns.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-ruby.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-grid.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-math.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-flex.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span-dynamic.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-block.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-details.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-fieldset.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-option.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-1.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-2.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span.html [ Failure ]\n\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-with-table-child.html [ Failure ]\ncrbug.com/1012289 [ Win10.20h2 ] external/wpt/css/css-lists/list-style-type-string-005b.html [ Failure ]\n\n# css-pseudo\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-001.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-001.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-004.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-001.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-child-marker.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-hi-001.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-digraph.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-001.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/target-text-004.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-grammar-error.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-spelling-error.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Pass ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-002.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-001.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-002.html [ Failure ]\ncrbug.com/1351020 [ Mac ] external/wpt/compat/webkit-text-fill-color-property-002.html [ Failure ]\n\n# CSS highlight painting (HighlightOverlayPainting)\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-painting-003.html [ Failure ]\ncrbug.com/1321114 paint/markers/suggestion-marker-basic.html [ Failure ]\n\ncrbug.com/1205953 external/wpt/css/css-will-change/will-change-fixpos-cb-position-1.html [ Failure ]\ncrbug.com/1207788 external/wpt/css/css-will-change/will-change-stacking-context-mask-1.html [ Failure ]\n\n# lab color space not yet implemented\ncrbug.com/1358565 external/wpt/css/css-images/gradient/gradient-eval-003.html [ Failure ]\n# color() function not implemented\ncrbug.com/1068610 external/wpt/css/css-color/predefined-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-011.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-012.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-016.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-basic-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-non-srgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-01.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-02.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-005.html [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-a0.6-a.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/t32-opacity-basic-0.6-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-basic-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-b.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/at-color-profile-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-currentcolor-001.html [ Failure ]\n\ncrbug.com/1343361 external/wpt/css/css-color/currentcolor-003.html [ Failure ]\n\ncrbug.com/1299585 [ Mac11 ] external/wpt/css/css-color-adjust/inheritance.html [ Failure ]\ncrbug.com/1299585 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html [ Failure Pass ]\n\ncrbug.com/1357623 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred.html [ Failure ]\n\n# @supports\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-001.html [ Failure ]\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-002.html [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-040.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-041.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-042.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/at-supports-046.html [ Failure ]\n\n# CSS Scrollbars\ncrbug.com/891944 external/wpt/css/css-scrollbars/textarea-scrollbar-width-none.html [ Failure ]\ncrbug.com/891944 external/wpt/css/css-scrollbars/transparent-on-root.html [ Failure ]\n# Incorrect native scrollbar repaint\ncrbug.com/891944 [ Mac ] external/wpt/css/css-scrollbars/scrollbar-width-paint-001.html [ Failure ]\n\n# css-nesting\ncrbug.com/1095675 external/wpt/css/selectors/nesting.html [ Failure ]\n\n# Failures on specific Mac bots\ncrbug.com/1319399 [ Mac11 ] external/wpt/css/selectors/focus-visible-025.html [ Failure ]\n\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-16.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-64.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-62.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-161.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18c.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-61.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-63.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-20.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-66.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-21.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-177a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-17.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-65.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-159.xml [ Skip ]\n\n# Failures from CSS3 Text (text-justify and text-indent: hanging/each-line) not being implemented.\ncrbug.com/248894 external/wpt/css/css-pseudo/first-letter-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-pseudo/first-line-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-composition.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/inheritance.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-indent/text-indent-each-line-hanging.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-002.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-004.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-005.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-006.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-and-trailing-spaces-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-distribute-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-character-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-word-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-none-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-indent.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-justify.html [ Failure ]\ncrbug.com/248894 external/wpt/web-animations/responsive/textIndent.html [ Failure ]\n\ncrbug.com/1364304 external/wpt/css/css-variables/css-variable-change-style-001.html [ Failure Pass ]\n\n# ====== Style team owned tests to here ======\n\n# Failing WPT html/semantics/* tests. Not all have been investigated.\ncrbug.com/1233659 external/wpt/html/semantics/embedded-content/the-embed-element/embed-represent-nothing-04.html [ Failure ]\ncrbug.com/1234202 external/wpt/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-menu.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-skip-no-boxes.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-007.html [ Failure ]\ncrbug.com/1167095 external/wpt/html/semantics/forms/form-submission-0/text-plain.window.html [ Pass Timeout ]\ncrbug.com/939561 [ Mac ] external/wpt/html/semantics/forms/the-input-element/show-picker.tentative.html [ Skip ]\ncrbug.com/1132413 external/wpt/html/semantics/scripting-1/the-script-element/json-module/parse-error.html [ Timeout ]\ncrbug.com/1232504 external/wpt/html/semantics/embedded-content/media-elements/src_object_blob.html [ Timeout ]\ncrbug.com/1232504 [ Win ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/1234199 [ Linux ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1234199 [ Mac ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1232504 [ Mac11 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\ncrbug.com/1232504 [ Mac12 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\n\ncrbug.com/1292852 [ Mac ] external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow.html [ Failure Pass ]\n\n# XML nodes aren't match by .class selectors:\ncrbug.com/649444 external/wpt/css/selectors/xml-class-selector.xml [ Failure ]\n\n# Bug in <select multiple> tap behavior:\ncrbug.com/1045672 fast/forms/select/listbox-tap.html [ Failure ]\n\n### sheriff 2019-07-16\ncrbug.com/983799 [ Win ] http/tests/navigation/redirect-on-back-updates-history-item.html [ Pass Timeout ]\n\n### sheriff 2018-05-28\n\ncrbug.com/767269 [ Win ] inspector-protocol/layout-fonts/cjk-ideograph-fallback-by-lang.js [ Failure Pass ]\n\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\n\n# Elastic overscroll doesn't work on Mac/Linux when running as a web_test. Manually,\n# this works as expected.\ncrbug.com/1310079 [ Mac ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\ncrbug.com/1310079 [ Linux ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\n\n# For win10, see crbug.com/955109\ncrbug.com/538697 [ Win ] printing/webgl-oversized-printing.html [ Crash Failure ]\n\ncrbug.com/904592 css3/filters/backdrop-filter-svg.html [ Failure ]\ncrbug.com/904592 [ Linux ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\ncrbug.com/904592 [ Win ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\n\ncrbug.com/280342 http/tests/media/progress-events-generated-correctly.html [ Failure Pass Timeout ]\n\n# This test is flaky when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 fast/table/frame-and-rules.html [ Failure Pass Timeout ]\n\n# This test needs a new reference when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 [ Mac11 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac11-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\n\ncrbug.com/520736 [ Linux ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\ncrbug.com/909095 [ Mac ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\n\n# Hiding video::-webkit-media-controls breaks --force-overlay-fullscreen-video.\ncrbug.com/1093447 virtual/android/fullscreen/rendering/backdrop-video.html [ Failure ]\n\n# gpuBenchmarking.pinchBy is busted on desktops for touchscreen pinch\ncrbug.com/787615 [ Win ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\ncrbug.com/787615 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\n\n# gpuBenchmarking.pinchBy is not implemented on Mac for touchscreen pinch\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-out-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow-desktop.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-desktop.html [ Skip ]\n\ncrbug.com/520188 [ Win ] http/tests/local/fileapi/file-last-modified-after-delete.html [ Failure Pass ]\ncrbug.com/520611 [ Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Failure Pass ]\ncrbug.com/520194 http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires.html [ Failure Pass ]\n\ncrbug.com/1051136 fast/forms/select/listbox-overlay-scrollbar.html [ Failure ]\n\n# These performance-sensitive user-timing tests are flaky in debug on all platforms, and flaky on all configurations of windows.\n# See: crbug.com/567965, crbug.com/518992, and crbug.com/518993\n\ncrbug.com/432129 html/marquee/marquee-scroll.html [ Failure Pass ]\ncrbug.com/326139 crbug.com/390125 media/video-frame-accurate-seek.html [ Failure Pass ]\ncrbug.com/421283 html/marquee/marquee-scrollamount.html [ Failure Pass ]\n\n# TODO(oshima): Move the event scaling code to eventSender and remove this.\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/gesture-scroll-amount.html [ Failure Timeout ]\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Linux ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Win ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\n\n# Only virtual/threaded version of these tests pass (or running them with --enable-threaded-compositing).\ncrbug.com/936891 fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Failure ]\n\ncrbug.com/498539 http/tests/devtools/tracing/timeline-misc/timeline-bound-function.js [ Failure Pass ]\n\ncrbug.com/498539 crbug.com/794869 crbug.com/798548 crbug.com/946716 http/tests/devtools/elements/styles-4/styles-update-from-js.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/889952 fast/selectors/selection-window-inactive.html [ Failure Pass ]\n\ncrbug.com/1107923 inspector-protocol/debugger/wasm-streaming-url.js [ Failure Pass Timeout ]\n\n# Script let/const redeclaration errors\ncrbug.com/1042162 http/tests/inspector-protocol/console/console-let-const-with-api.js [ Failure Pass ]\n\n# Will be re-enabled and rebaselined once we remove the '--enable-file-cookies' flag.\ncrbug.com/470482 fast/cookies/local-file-can-set-cookies.html [ Skip ]\n\n# Text::inDocument() returns false but should not.\ncrbug.com/264138 dom/legacy_dom_conformance/xhtml/level3/core/nodecomparedocumentposition38.xhtml [ Failure ]\n\ncrbug.com/411164 [ Win ] http/tests/security/powerfulFeatureRestrictions/serviceworker-on-insecure-origin.html [ Pass ]\n\ncrbug.com/686118 http/tests/security/setDomainRelaxationForbiddenForURLScheme.html [ Crash Pass ]\n\n# Flaky tests on Mac after enabling scroll animations in web_tests\ncrbug.com/944583 [ Mac ] fast/events/keyboard-scroll-by-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/space-scroll-textinput-canceled.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll-on-iframe.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-x-in-scrolling-page.html [ Failure Pass Timeout ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-y-in-scrolling-page.html [ Failure Pass Timeout ]\n# Sheriff: 2020-05-18\ncrbug.com/1083820 [ Mac ] fast/scrolling/document-level-wheel-event-listener-passive-by-default.html [ Failure Pass ]\n\n# In external/wpt/html/, we prefer checking in failure\n# expectation files. The following tests with [ Failure ] don't have failure\n# expectation files because they contain local path names.\n# Use crbug.com/490511 for untriaged failures.\ncrbug.com/108417 external/wpt/html/rendering/non-replaced-elements/tables/table-border-1.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/color.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/width.html [ Failure ]\ncrbug.com/692560 external/wpt/html/semantics/document-metadata/styling/LinkStyle.html [ Failure Pass ]\n\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins.html [ Failure ]\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins-2.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-painting-order.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-display-rendering.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-tall.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3s.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3q.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/anonymous-button-content-box.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/inline-level.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1l.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2l.html [ Failure ]\n\ncrbug.com/821455 editing/pasteboard/drag-files-to-editable-element.html [ Failure ]\n\ncrbug.com/1170052 external/wpt/mediacapture-streams/MediaStreamTrack-MediaElement-disabled-audio-is-silence.https.html [ Pass Timeout ]\ncrbug.com/1174937 [ Mac10.15 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Mac11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\n\ncrbug.com/766135 fast/dom/Window/redirect-with-timer.html [ Pass Timeout ]\n\n# Ref tests that needs investigation.\ncrbug.com/404597 fast/forms/long-text-in-input.html [ Skip ]\ncrbug.com/552494 virtual/prefer_compositing_to_lcd_text/scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-018.html [ Failure ]\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-024.html [ Failure ]\ncrbug.com/1134483 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-036.html [ Failure ]\n\ncrbug.com/745905 external/wpt/css/css-ui/text-overflow-021.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html [ Failure ]\n\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Crash Failure ]\n\ncrbug.com/1067031 external/wpt/css/css-overflow/webkit-line-clamp-035.html [ Failure ]\n\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-margin-001.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-inset-003.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-polygon-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-shape-arguments-000.html [ Failure Pass ]\n\ncrbug.com/1339541 [ Linux ] compositing/framesets/composited-frame-alignment.html [ Failure Pass ]\n\ncrbug.com/424365 external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-016.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-013.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-014.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-015.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-043.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-048.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-023.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-027.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-022.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-046.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-052.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-051.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-026.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-049.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-047.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-053.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-050.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-037.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-025.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-007.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-007.html [ Failure ]\n\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-001.html [ Failure ]\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-002.html [ Failure ]\ncrbug.com/1140728 external/wpt/css/css-text/hyphens/hyphens-span-002.html [ Failure ]\ncrbug.com/1139693 virtual/text-antialias/hyphens/midword-break-priority.html [ Failure ]\n\ncrbug.com/1250257 external/wpt/css/css-text/tab-size/tab-size-block-ancestor.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-001.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-002.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-003.html [ Failure ]\ncrbug.com/970200 external/wpt/css/css-text/text-indent/text-indent-tab-positions-001.html [ Failure ]\ncrbug.com/1030452 external/wpt/css/css-text/text-transform/text-transform-upperlower-016.html [ Failure ]\n\ncrbug.com/1008029 [ Mac ] external/wpt/css/css-text/white-space/pre-wrap-018.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-019.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-013.html [ Failure ]\n\n# Handling of trailing other space separator\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-002.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-003.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-004.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-002.html [ Failure ]\n\ncrbug.com/1162836 external/wpt/css/css-text/white-space/full-width-leading-spaces-004.html [ Failure ]\n\n# Follow up the spec change for U+2010, U+2013\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-loose-hyphens-001.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-normal-hyphens-002.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-strict-hyphens-002.html [ Failure ]\n\n# Inseparable characters\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-normal-015a.xht [ Failure ]\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-strict-015a.xht [ Failure ]\n\n# Link event firing\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html [ Timeout ]\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html [ Timeout ]\n\n# crbug.com/1095379: These are flaky-slow, but are already present in SlowTests\ncrbug.com/73609 http/tests/media/video-play-stall.html [ Failure Pass Timeout ]\ncrbug.com/518987 http/tests/xmlhttprequest/navigation-abort-detaches-frame.html [ Pass Timeout ]\ncrbug.com/538717 [ Win ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/829740 fast/history/history-back-twice-with-subframes-assert.html [ Pass Timeout ]\ncrbug.com/836783 fast/peerconnection/RTCRtpSender-setParameters.html [ Pass Timeout ]\n\n# crbug.com/1218715 This fails when PartitionConnectionsByNetworkIsolationKey is enabled.\ncrbug.com/1218715 external/wpt/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\ncrbug.com/1218715 wpt_internal/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\n\n# Sheriff 2021-05-25\ncrbug.com/1209900 fast/peerconnection/RTCPeerConnection-reload-sctptransport.html [ Failure Pass ]\n\n# This test is currently failing everywhere\ncrbug.com/846981 fast/webgl/texImage-imageBitmap-from-imageData-resize.html [ Skip ]\n\n# crbug.com/1095379: These fail with a timeout, even when they're given extra time (via SlowTests)\ncrbug.com/1135405 http/tests/devtools/sources/debugger-pause/debugger-pause-infinite-loop.js [ Pass Timeout ]\ncrbug.com/1072022 [ Mac ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/1072022 [ Linux ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/915903 http/tests/security/inactive-document-with-empty-security-origin.html [ Pass Timeout ]\ncrbug.com/987138 [ Linux ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/987138 [ Win ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/1122742 http/tests/devtools/sources/debugger/source-frame-inline-breakpoint-decorations.js [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck.https.html [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck-cors-import.https.html [ Pass Timeout ]\ncrbug.com/805756 external/wpt/html/semantics/tabular-data/processing-model-1/span-limits.html [ Pass Timeout ]\n\n# crbug.com/1218716: These fail when TrustTokenOriginTrial is enabled.\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation-xhr.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-default-feature-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-supported-by-feature-policy.tentative.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-default-permissions-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-supported-by-permissions-policy.tentative.html [ Failure ]\n\n# Sheriff 2020-02-06\n\n# These are added to W3CImportExpectations as Skip, remove when next import is done.\ncrbug.com/666657 external/wpt/css/css-text/hanging-punctuation/* [ Skip ]\n\ncrbug.com/909597 external/wpt/css/css-ui/text-overflow-ruby.html [ Failure ]\n\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-001.html [ Failure ]\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-002.html [ Failure ]\n\n# crbug.com/1218721: These tests fail when libvpx_for_vp8 is enabled.\ncrbug.com/1218721 fast/borders/border-radius-mask-video-shadow.html [ Failure ]\ncrbug.com/1218721 fast/borders/border-radius-mask-video.html [ Failure ]\ncrbug.com/1218721 [ Mac ] http/tests/media/video-frame-size-change.html [ Failure ]\n\ncrbug.com/637055 fast/css/outline-offset-large.html [ Skip ]\n\n# Either \"combo\" or split should run: http://testthewebforward.org/docs/css-naming.html\ncrbug.com/410320 external/wpt/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001.html [ Skip ]\n\n# These tests pass but images do not match because of wrong half-leading in vertical-lr\n\n# These tests pass but images do not match because of position: absolute in vertical flow bug\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-003.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-005.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-007.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-009.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-002.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-004.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-006.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-008.xht [ Failure ]\n\n# These tests pass but images do not match because tests are stricter than the spec.\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-001.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-002.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-003.html [ Failure ]\n\n# We're experimenting with changing the behavior of the 'nonce' attribute\n\n# These CSS Writing Modes Level 3 tests pass but causes 1px diff on images, notified to the submitter.\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-020.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-020.xht [ Failure ]\n\ncrbug.com/381684 [ Mac ] fonts/family-fallback-gardiner.html [ Skip ]\ncrbug.com/381684 [ Win ] fonts/family-fallback-gardiner.html [ Skip ]\n\ncrbug.com/377696 printing/setPrinting.html [ Failure ]\ncrbug.com/1311165 printing/fixed-positioned-but-static-headers-and-footers.html [ Failure ]\ncrbug.com/1121942 printing/fixedpos-in-multicol.html [ Failure ]\ncrbug.com/1121942 printing/monolithic-at-page-block-end-horizontal-tb.html [ Failure ]\ncrbug.com/1121942 printing/page-break-avoid.html [ Failure ]\n\ncrbug.com/1204498 external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass ]\ncrbug.com/1223681 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass Timeout ]\n\n# crbug.com/1218723 This test fails when SplitCacheByNetworkIsolationKey is enabled.\ncrbug.com/1218723 http/tests/devtools/network/network-prefetch.js [ Failure ]\n\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure Pass ]\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure Pass ]\n\ncrbug.com/524160 [ Debug ] http/tests/media/media-source/stream_memory_tests/mediasource-appendbuffer-quota-exceeded-default-buffers.html [ Timeout ]\n\n# based on Builder Win7 Tests (1) and flakyness dashboard\ncrbug.com/1325545 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.html [ Failure Pass ]\ncrbug.com/1325515 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1325518 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.html [ Failure Pass ]\ncrbug.com/1325538 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.serviceworker.html [ Failure Pass ]\n\n# On all platforms media tests don't currently use gpu-accelerated (proprietary)\n# codecs, so no benefit to running them again with gpu acceleration enabled.\ncrbug.com/555703 virtual/media-gpu-accelerated/* [ Skip ]\n\ncrbug.com/400841 media/video-canvas-draw.html [ Failure ]\n\n# switching to apache-win32: needs triaging.\ncrbug.com/528062 [ Win ] http/tests/css/missing-repaint-after-slow-style-sheet.pl [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-data-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-hybrid-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/security/XFrameOptions/x-frame-options-cached.html [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/security/contentSecurityPolicy/cached-frame-csp.html [ Failure ]\n\n# When drawing subpixel smoothed glyphs, CoreGraphics will fake bold the glyphs.\n# In this configuration, the pixel smoothed glyphs will be created from subpixel smoothed glyphs.\n# This means that CoreGraphics may draw outside the reported glyph bounds, and in this case does.\n# By about a quarter or less of a pixel.\ncrbug.com/997202 [ Mac ] virtual/text-antialias/international/bdo-bidi-width.html [ Failure ]\n\ncrbug.com/574283 [ Mac ] fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\n\ncrbug.com/599670 [ Win ] http/tests/devtools/resource-parameters-ipv6.js [ Crash Failure Pass ]\ncrbug.com/472330 fast/borders/border-image-outset-split-inline-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-rl.html [ Failure ]\n\ncrbug.com/346473 fast/events/drag-on-mouse-move-cancelled.html [ Failure ]\n\n# These tests are skipped as there is no touch support on Mac.\ncrbug.com/613672 [ Mac ] fast/events/pointerevents/multi-pointer-event-in-slop-region.html [ Skip ]\n\n# In addition to having no support on Mac, the following test times out\n# regularly on Windows.\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll-by-page.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchpad-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchscreen-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-mainframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-xhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-yhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-diagonally.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe-editable.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-input-field.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-past-extent.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page.html [ Skip ]\n\n# Since there is no compositor thread when running tests then there is no main thread event queue. Hence the\n# logic for this test will be skipped when running Layout tests.\ncrbug.com/770028 external/wpt/pointerevents/pointerlock/pointerevent_getPredictedEvents_when_pointerlocked-manual.html [ Skip ]\ncrbug.com/770028 external/wpt/pointerevents/pointerevent_predicted_events_attributes-manual.html [ Skip ]\n\n# This test relies on racy should_send_resource_timing_info_to_parent() flag being sent between processes.\ncrbug.com/957181 external/wpt/resource-timing/nested-context-navigations-iframe.html [ Failure Pass ]\n\n# During work on crbug.com/1171767, we discovered a bug demonstrable through\n# WPT. Marking as a failing test until we update our implementation.\ncrbug.com/1223118 external/wpt/resource-timing/initiator-type/link.html [ Failure ]\n\n# Chrome touch-action computation ignores div transforms.\ncrbug.com/715148 external/wpt/pointerevents/pointerevent_touch-action-rotated-divs_touch-manual.html [ Skip ]\n\ncrbug.com/658304 [ Win ] fast/forms/select/input-select-after-resize.html [ Crash Failure Pass Timeout ]\n\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-001.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-002.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-003.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-004.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005a.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006a.html [ Failure ]\n\ncrbug.com/1029069 [ Mac ] external/wpt/css/css-fonts/standard-font-family.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-11.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-12.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-13.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-14.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-15.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-16.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-19.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-20.html [ Failure ]\n\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-2.html [ Failure ]\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-3.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-text-decor/text-decoration-thickness-percent-001.html [ Failure ]\n\ncrbug.com/752449 [ Mac10.14 ] external/wpt/css/css-fonts/matching/fixed-stretch-style-over-weight.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-fonts/size-adjust-text-decoration.tentative.html [ Failure ]\n\n# CSS Font Feature Resolution is not implemented yet\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-001.html [ Failure ]\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-002.html [ Failure ]\n\n# Disabled briefly until test runner support lands.\ncrbug.com/479533 accessibility/show-context-menu.html [ Skip ]\ncrbug.com/479533 accessibility/show-context-menu-shadowdom.html [ Skip ]\ncrbug.com/483653 accessibility/scroll-containers.html [ Skip ]\n\n# Temporarily disabled until document marker serialization is enabled for AXInlineTextBox\ncrbug.com/1227485 accessibility/spelling-markers.html [ Failure ]\n\n# Bugs caused by enabling DMSAA on OOPR-Canvas\ncrbug.com/1229463 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-largedraws.html [ Crash ]\ncrbug.com/1229486 virtual/oopr-canvas2d/fast/canvas/canvas-incremental-repaint.html [ Failure ]\n\n# Temporarily disabled after chromium change\ncrbug.com/492511 [ Mac ] virtual/text-antialias/atsui-negative-spacing-features.html [ Failure ]\ncrbug.com/492511 [ Mac ] virtual/text-antialias/international/arabic-justify.html [ Failure ]\n\ncrbug.com/501659 fast/xsl/xslt-missing-namespace-in-xslt.xml [ Failure ]\n\ncrbug.com/501659 http/tests/security/xss-DENIED-xml-external-entity.xhtml [ Failure ]\ncrbug.com/501659 fast/css/stylesheet-candidate-nodes-crash.xhtml [ Failure ]\n\n# TODO(chrishtr) uncomment ones marked crbug.com/591500 after fixing crbug.com/665259.\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-but-static-headers-and-footers.html [ Failure Pass ]\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Failure Pass ]\n\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/list-item-with-empty-first-line.html [ Failure ]\n\ncrbug.com/353746 virtual/android/fullscreen/video-specified-size.html [ Failure Pass ]\n\ncrbug.com/525296 fast/css/font-load-while-styleresolver-missing.html [ Crash Failure Pass ]\n\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-window.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-worker.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-sharedworker.html [ Failure Pass Timeout ]\n\ncrbug.com/548765 http/tests/devtools/console-fetch-logging.js [ Failure Pass ]\n\ncrbug.com/399951 http/tests/mime/javascript-mimetype-usecounters.html [ Failure Pass ]\n\ncrbug.com/663847 fast/events/context-no-deselect.html [ Failure Pass ]\n\ncrbug.com/611658 [ Win ] virtual/text-antialias/emphasis-combined-text.html [ Failure ]\n\ncrbug.com/654477 [ Win ] compositing/video/video-controls-layer-creation.html [ Failure Pass ]\ncrbug.com/654477 fast/hidpi/video-controls-in-hidpi.html [ Failure ]\ncrbug.com/654477 fast/layers/video-layer.html [ Failure ]\n# These could likely be removed - see https://chromium-review.googlesource.com/c/chromium/src/+/1252141\ncrbug.com/654477 media/controls-focus-ring.html [ Failure ]\n\ncrbug.com/637930 http/tests/media/video-buffered.html [ Failure Pass ]\n\ncrbug.com/613659 external/wpt/quirks/percentage-height-calculation.html [ Failure ]\n\n# Note: this test was previously marked as slow on Debug builds. Skipping until crash is fixed\ncrbug.com/619978 fast/css/giant-stylesheet-crash.html [ Skip ]\n\ncrbug.com/624430 [ Win10.20h2 ] virtual/text-antialias/font-features/caps-casemapping.html [ Failure ]\n\ncrbug.com/399507 virtual/threaded/http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# These tests have test harness errors and PASS lines that have a\n# non-deterministic order.\ncrbug.com/705125 fast/mediacapturefromelement/CanvasCaptureMediaStream-capture-out-of-DOM-element.html [ Failure ]\n\n# Working on getting the CSP tests going:\ncrbug.com/694525 external/wpt/content-security-policy/navigation/to-javascript-parent-initiated-child-csp.html [ Skip ]\n\n# These tests will be added back soon:\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html [ Skip ]\n\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-cross-document-traversal.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-hashchange.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-pushstate.html [ Timeout ]\n\n# These two are like the above but some bots seem to give timeouts that count as failures according to the -expected.txt,\n# while other bots give actual timeouts.\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-same-document-nav.html [ Failure Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-nav.html [ Failure Timeout ]\n\ncrbug.com/876485 fast/performance/performance-measure-null-exception.html [ Failure ]\n\ncrbug.com/713587 external/wpt/css/css-ui/caret-color-006.html [ Skip ]\n\n# Unprefixed image-set() not supported\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-rendering.html [ Failure ]\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-content-rendering.html [ Failure ]\n\ncrbug.com/604875 external/wpt/css/css-images/tiled-gradients.html [ Failure ]\n\ncrbug.com/1347068 external/wpt/css/css-images/gradient/gradient-eval-004.html [ Failure ]\n\ncrbug.com/808834 [ Linux ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\ncrbug.com/808834 [ Win ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\n\ncrbug.com/723741 virtual/threaded/http/tests/devtools/tracing/idle-callback.js [ Crash Failure Pass Timeout ]\n\n# Untriaged failures after https://crrev.com/c/543695/.\n# These need to be updated but appear not to be related to that change.\ncrbug.com/626703 http/tests/devtools/indexeddb/database-refresh-view.js [ Failure Pass ]\ncrbug.com/626703 crbug.com/946710 http/tests/devtools/extensions/extensions-sidebar.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/805463 external/wpt/acid/acid3/numbered-tests.html [ Skip ]\n\ncrbug.com/828506 [ Win ] fast/events/touch/scroll-without-mouse-lacks-mousemove-events.html [ Failure Pass ]\n\n# Failure messages are unstable so we cannot create baselines.\ncrbug.com/832071 external/wpt/service-workers/service-worker/worker-client-id.https.html [ Failure ]\n\n# failures in external/wpt/css/css-animations/ and web-animations/ from Mozilla tests\ncrbug.com/849859 external/wpt/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html [ Failure ]\n\n# Some control characters still not visible\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-001.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-002.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-003.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-004.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-005.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-006.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-007.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-008.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00B.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-00D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-010.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-011.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-012.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-013.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-014.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-015.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-016.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-017.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-018.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-019.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01F.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-07F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-080.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# tests in this group need implementation of keyDown/keyUp\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/multiDevice.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/actionsWithKeyPressed.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/textEditCommands.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-input-element/checkable-active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-button-element/active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-canceling.html [ Failure ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/inert-node-is-uneditable.html [ Failure ]\n# tests in this group need implementation of focus navigation forward/backward\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/delegatesFocus-highlight-sibling.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback-default-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-2levels.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-with-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-with-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-nested-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassigned-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-with-negative-index.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# for these tests there is an exception when scrolling: element click intercepted error\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-basic.html [ Failure Timeout ]\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-scrolling.html [ Failure Timeout ]\n\n# crbug.com/1298321: \"element click intercepted error\" when <body style=\"zoom:2\">.\ncrbug.com/1298321 fast/forms/calendar-picker/calendar-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/calendar-picker/date-picker-appearance-zoom150.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/select-popup/popup-menu-appearance-zoom.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/suggestion-picker/date-suggestion-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\n\n# crbug.com/1299212: These need more work after the revamp of picker-common.js\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-appearance-coarse.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-position.html [ Failure Pass Timeout ]\ncrbug.com/1299212 http/tests/webfont/popup-menu-load-webfont-after-open.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/week-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/month-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/datetimelocal-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-appearance-after-closing-popup.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-popup-appearance-basic.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select/menulist-popup-type-ahead-style-change.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Failure Pass ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/datetimelocal/datetimelocal-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/month/month-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/time/time-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/week/week-picker-input-change-events.html [ Crash Pass Timeout ]\n# This might be just flaky on Windows:\ncrbug.com/1299212 [ Linux ] fast/forms/select/menulist-popup-mutation-crash.html [ Failure Pass Timeout ]\n# These appear to be flaky at least on Linux:\ncrbug.com/1299212 [ Linux ] fast/forms/week/week-picker-ax.html [ Failure Pass ]\ncrbug.com/1299212 [ Linux ] fast/forms/select-popup/popup-menu-ax.html [ Failure Pass ]\n\n# isInputPending requires threaded compositing and layerized iframes\ncrbug.com/910421 external/wpt/is-input-pending/* [ Skip ]\ncrbug.com/910421 virtual/threaded-composited-iframes/external/wpt/is-input-pending/* [ Pass ]\n\n# requestIdleCallback requires threaded compositing\ncrbug.com/1259718 external/wpt/requestidlecallback/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/external/wpt/requestidlecallback/* [ Pass ]\ncrbug.com/1259718 http/tests/devtools/isolated-code-cache/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/http/tests/devtools/isolated-code-cache/* [ Pass ]\n\n# WebVTT is off because additional padding\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_completely_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_down.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/bidi_ruby.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_LF_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2028_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2029_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0041_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u05D0_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0628_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u06E9_no_strong_dir.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/cue_too_long.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/decode_escaped_entities.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/disable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_line.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/enable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_height_19.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/single_quote.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_90.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_99.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_0_is_top.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_1_wrapped_cue_grow_downwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_-2_wrapped_cue_grow_upwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_height400_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/navigate_cue_position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/one_line_cue_plus_wrapped_cue.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/repaint.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/cue_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_box.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/cue_func_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/id_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_allowed_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/type_selector_root.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_voice_attribute.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/bold_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/inherit_as_default_value_inherits_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/italic_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/underline_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/size_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/scroll_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/single_line_top_left.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/width_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/start_alignment.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_rl.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_ruby-position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_vertical_text-combine-upright.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ]\n\n# Flaky test\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\n\n# FontFace object failures detected by WPT test\ncrbug.com/965409 external/wpt/css/css-font-loading/fontface-descriptor-updates.html [ Failure ]\n\ncrbug.com/1002514 external/wpt/web-share/share-sharePromise-internal-slot.https.html [ Crash Failure ]\n\ncrbug.com/1029514 external/wpt/html/semantics/embedded-content/the-video-element/resize-during-playback.html [ Failure Pass ]\n\n# ::first-line issues\ncrbug.com/1085772 external/wpt/css/css-pseudo/first-line-opacity-001.html [ Failure ]\ncrbug.com/798257 external/wpt/css/css-pseudo/first-line-line-height-002.html [ Failure ]\n\n# motion-1 issues\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-005.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-006.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-007.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-009.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-001.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-005.html [ Failure ]\ncrbug.com/654669 external/wpt/css/motion/offset-path-shape.html [ Failure ]\ncrbug.com/654666 external/wpt/css/motion/offset-path-url.html [ Failure ]\n\n# Various css-values WPT failures\ncrbug.com/1053965 external/wpt/css/css-values/ex-unit-004.html [ Failure ]\ncrbug.com/759914 external/wpt/css/css-values/ch-unit-011.html [ Failure ]\ncrbug.com/965366 external/wpt/css/css-values/ch-unit-017.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-002.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-003.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-009.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-010.html [ Failure ]\n\ncrbug.com/1069300 external/wpt/css/css-pseudo/active-selection-063.html [ Failure ]\ncrbug.com/1108711 external/wpt/css/css-pseudo/active-selection-057.html [ Failure ]\ncrbug.com/1110399 external/wpt/css/css-pseudo/active-selection-031.html [ Failure ]\ncrbug.com/1110401 external/wpt/css/css-pseudo/active-selection-045.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-027.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-025.html [ Failure ]\n\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-base-container.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-text-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/improperly-contained-annotation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rb-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-block-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rt-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-annotation-pairing-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-abs.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-different-size.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-004.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-model-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-float-handling-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-lang-specific-style-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-text-collapse.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rbc-rtc-basic-001.html [ Failure ]\n\ncrbug.com/1223955 external/wpt/css/css-ruby/nested-ruby-pairing-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-005.html [ Failure ]\n\ncrbug.com/1333451 external/wpt/css/css-ruby/intra-base-white-space-001.html [ Failure ]\n\n# WebRTC: there's an open bug with some capture scenarios not working.\ncrbug.com/1156408 external/wpt/webrtc/RTCPeerConnection-relay-canvas.https.html [ Failure Pass Timeout ]\n\ncrbug.com/1074547 external/wpt/css/css-transitions/transitioncancel-002.html [ Timeout ]\n\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-004.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-005.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-styling-002.html [ Failure ]\ncrbug.com/1113004 external/wpt/css/css-pseudo/active-selection-043.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-051.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-052.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-053.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-054.html [ Failure ]\ncrbug.com/1018465 external/wpt/css/css-pseudo/active-selection-056.html [ Failure ]\ncrbug.com/932343 external/wpt/css/css-pseudo/active-selection-014.html [ Failure ]\n\n# virtual/css-highlight-inheritance/\ncrbug.com/1217745 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/active-selection-018.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-004.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-005.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-004.html [ Pass ]\ncrbug.com/1309822 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Pass ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-001.html [ Pass ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Pass ]\n\ncrbug.com/825270 external/wpt/payment-request/delegate-request.https.sub.html [ Failure ]\ncrbug.com/1105958 external/wpt/payment-request/payment-is-showing.https.html [ Failure Timeout ]\n\n### external/wpt/css/CSS2/tables/\ncrbug.com/958381 external/wpt/css/CSS2/tables/column-visibility-004.xht [ Failure ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-079.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-080.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-081.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-082.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-083.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-084.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-085.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-086.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-093.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-094.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-095.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-096.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-097.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-098.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-103.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-104.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-125.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-126.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-127.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-128.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-129.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-130.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-131.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-132.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-155.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-156.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-157.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-158.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-167.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-168.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-171.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-172.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-181.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-182.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-183.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-184.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-185.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-186.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-187.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-188.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-199.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-200.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-201.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-202.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-203.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-204.xht [ Skip ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/anonymous-table-box-width-001.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-009.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-010.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-011.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-012.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-015.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-016.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-017.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-019.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-020.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-177.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-178.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-179.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-180.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-189.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-190.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-191.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-192.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-193.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-194.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-195.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-196.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-197.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-198.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-205.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-206.xht [ Failure ]\n\n# Custom-elements\ncrbug.com/1351482 external/wpt/custom-elements/form-associated/ElementInternals-target-element-is-held-strongly.html [ Timeout ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml [ Crash ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]\ncrbug.com/1365604 [ Mac ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Crash Pass Timeout ]\ncrbug.com/1365604 [ Win ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Pass Timeout ]\n\n# unblock roll wpt\ncrbug.com/626703 external/wpt/service-workers/service-worker/worker-interception.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/worker-interception.https.html [ Pass ]\n\n# ====== Test expectations added to unblock wpt-importer ======\ncrbug.com/626703 external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 virtual/threaded/external/wpt/requestidlecallback/deadline-max-timeout-dynamic.html [ Failure ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 external/wpt/preload/preload-resource-match.https.html [ Failure ]\ncrbug.com/1359555 virtual/prerender/external/wpt/speculation-rules/prerender/workers.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/restriction-presentation-request.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/storage-foundation.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/partitioned-cookies/http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Failure ]\n\n# ====== New tests from wpt-importer added here ======\ncrbug.com/626703 [ Win11 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/redirect/redirect-upload.h2.any.sharedworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/csp-early-hints-absent-final-disallowed.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/referrer-policy-same-origin.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/closing-handshake/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/013.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/022.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-getting.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/007.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/xhr/status.h2.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/page-visibility/visibility-state-entry.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-persistent-permission.https.html [ Crash Failure ]\n# TODO(crbug.com/1358135, crbug.com/1358147): Re-enable this test: Re-enable this test\ncrbug.com/626703 [ Mac10.14 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/orientation-event/motion/page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/key-scrolling.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/fetch/api/response/response-clone.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.worker.html [ Crash Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/basic/request-upload.h2.any.worker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/coep-early-hints-none-final-require-corp.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/iframe-pdf.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/preconnect-in-early-hints.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-delayed.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/003.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/009.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/private-network-access/fetch.window.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win11 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/permissions-policy/reporting/xr-report-only.https.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-classic.http-rp/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-module-data.meta/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-classic-data.meta/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-module-data.http-rp/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/002.html?wss [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss [ Skip Timeout ]\ncrbug.com/626703 virtual/view-transition/wpt_internal/view-transition/content-with-transform-old-image.html [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment.html [ Failure Skip Timeout ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-cross-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-main-frame-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-remove-subframe.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-same-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc-encoded-transform/RTCPeerConnection-insertable-streams-simulcast.https.html [ Failure Pass Timeout ]\n# TODO(crbug.com/1315625): Re-enable this test\ncrbug.com/626703 external/wpt/webrtc-encoded-transform/sframe-keys.https.html [ Skip ]\ncrbug.com/626703 external/wpt/geolocation-API/getCurrentPosition_permission_allow.https.html [ Timeout ]\ncrbug.com/626703 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/idlharness.https.window.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-on-self-origin-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/exported-names.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-import-wasm-export.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-js-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker-import.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker.tentative.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/resource-timing/object-not-found-adds-entry.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCConfiguration-iceTransportPolicy.html [ Skip Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webaudio/the-audio-api/the-pannernode-interface/ctor-panner.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.14 ] virtual/portals/external/wpt/portals/no-portal-in-sandboxed-popup.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/unload-a-document/005.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-values/cap-unit-001.html [ Failure ]\ncrbug.com/626703 external/wpt/selection/textcontrols/onselectionchange-content-attribute.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_call.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_postMessage.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_serialize.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-capture-video.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/1270841 [ Mac ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-19.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/web-locks/bfcache/abort.tentative.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/workers/modules/shared-worker-import-csp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_AES-CTR.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.html?1-10 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker.html?141-150 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/import_export/ec_importKey.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/backplate/forced-colors-mode-backplate-01.html [ Crash ]\ncrbug.com/626703 external/wpt/workers/interfaces/WorkerUtils/importScripts/blob-url.worker.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/tables/table-anonymous-objects-211.xht [ Failure ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 external/wpt/editing/run/forwarddelete.html?6001-last [ Failure ]\ncrbug.com/626703 external/wpt/selection/contenteditable/initial-selection-on-focus.tentative.html?div [ Failure ]\ncrbug.com/626703 external/wpt/geolocation-API/non-fully-active.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/selection/textcontrols/selectionchange-bubble.html [ Timeout ]\ncrbug.com/626703 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio-cross-origin.sub.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html [ Failure ]\ncrbug.com/626703 external/wpt/density-size-correction/image-set-003.html [ Failure ]\ncrbug.com/626703 external/wpt/infrastructure/assumptions/non-local-ports.sub.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel-service-worker.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-blocked-port.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.html [ Pass Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.worker.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.worker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/serviceworker/cache-abort.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/opening-handshake/005.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCSctpTransport-maxChannels.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/simplecall.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/bundle.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/video-rvfc/request-video-frame-callback-webrtc.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-demuxing.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/1209223 external/wpt/html/syntax/xmldecl/xmldecl-2.html [ Failure ]\ncrbug.com/626703 [ Mac ] editing/pasteboard/drag-selected-image-to-contenteditable.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xrSession_requestReferenceSpace_features.https.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-same-site.html [ Crash Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-different-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-same-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-different-site.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/backpressure-receive.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/1191547 external/wpt/html/semantics/forms/the-label-element/proxy-modifier-click-to-associated-element.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/websockets/cookies/001.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/002.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/003.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/005.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/007.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 [ Mac ] virtual/threaded/external/wpt/css/css-scroll-snap/input/keyboard.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/preload/download-resources.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys-combinations.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys.html [ Timeout ]\ncrbug.com/626703 [ Mac10.13 ] virtual/threaded/external/wpt/web-animations/timing-model/animations/updating-the-finished-state.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-stop.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xr_viewport_scale.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/editing/other/select-all-and-delete-in-html-element-having-contenteditable.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/iframe.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/crossOrigin.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-during-and-after-dispatch.tentative.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/scroll-to-text-fragment/redirects.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/fetch/connection-pool/network-partition-key.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-backspace.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-forwarddelete.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/workers/postMessage_block.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/order-of-events/focus-events/focus-management-expectations.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/preload/onload-event.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/workers/shared-worker-parse-error-failure.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-operations.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-dpr/content-dpr-various-elements.html [ Failure ]\ncrbug.com/626703 external/wpt/workers/abrupt-completion.html [ Timeout ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/ready.https.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/fetch/corb/script-resource-with-nonsniffable-types.tentative.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/web-animations/timing-model/animation-effects/phases-and-states.html [ Crash ]\ncrbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/snap-to-line.html [ Failure ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-offer.html [ Timeout ]\ncrbug.com/626703 external/wpt/webauthn/idlharness-manual.https.window.js [ Skip ]\ncrbug.com/1004760 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-pan-x-pan-y-pan-y_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-none-css_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames-after-reappend.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/steps_for_selecting_the_payment_handler.html [ Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/apply_the_modifiers.html [ Timeout ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-tracks.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-remote-track-mute.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/fetch/content-type/response.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-dynamic-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-001.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/url/a-element.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-url-with-space.any.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange-long.https.html [ Failure Pass ]\n\n### virtual/prerender/external/wpt/speculation-rules/prerender\ncrbug.com/1126305 [ Mac10.15 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/restrictions.html [ Skip Timeout ]\n\n### See crbug.com/891427 comment near the top of this file:\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-004.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-001.svg [ Failure ]\n\ncrbug.com/1131471 external/wpt/web-locks/clientids.tentative.https.html [ Failure ]\n\n# See also crbug.com/920100 (sheriff 2019-01-09).\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/external-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style-with-differentorigin-base-tag.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/internal-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/presentation-attribute.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/processing-instruction.html [ Failure Timeout ]\n\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-complex-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-bicubic-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-005.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-002.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-003.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-pause-resume.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-9.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-8.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-7.html [ Failure ]\ncrbug.com/626703 external/wpt/quirks/text-decoration-doesnt-propagate-into-tables/quirks.html [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-002.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-002.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-speak-without-activation-fails.tentative.html [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-007.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-005.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-002.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-003.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-201.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-002.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-006.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-003.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-101.svg [ Failure ]\ncrbug.com/626703 external/wpt/clear-site-data/executionContexts.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-security-policy/securitypolicyviolation/targeting.html [ Timeout ]\ncrbug.com/626703 external/wpt/web-animations/timing-model/timelines/update-and-send-events.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/orientation-reading.html [ Timeout ]\n\n# Tests that rely on a non-exposed test-only API. Tested in virtual/task-tracking\nwpt_internal/task-tracking/* [ Failure Skip ]\nvirtual/task-tracking/* [ Pass ]\ncrbug.com/1326491 [ Mac ] virtual/task-tracking/wpt_internal/task-tracking/soft-navigation-heuristics/detached-iframe-container.html [ Timeout ]\n\ncrbug.com/626703 external/wpt/fetch/security/redirect-to-url-with-credentials.https.html [ Timeout ]\ncrbug.com/981970 external/wpt/fetch/http-cache/split-cache.html [ Skip ]\ncrbug.com/626703 external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-026.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/acid/acid2/reftest.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/acid/acid3/test.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-006.html [ Skip ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-007.html [ Skip ]\ncrbug.com/626703 external/wpt/compat/webkit-text-fill-color-property-005.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-002.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-collapsing-bidi-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-mixed-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006b.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006c.xht [ Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-avtracks.html [ Crash Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Failure Timeout ]\ncrbug.com/958104 external/wpt/presentation-api/controlling-ua/getAvailability.https.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event-subframe.html [ Timeout ]\n\n# These tests pass on the blink_rel bots but fail on the other builders\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-3-ref.html [ Crash ]\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-4.html [ Crash Timeout ]\n\n# Moved from NeverFixTests. These may be relevant again now that\n# overlay scrollbars have been fixed (crrev.com/c/3455024).\ncrbug.com/1296816 [ Win ] virtual/overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure ]\n\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-004.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-007.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-009.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-010.html [ Failure ]\n\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-006.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-007.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-008.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-km-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-my-000.html [ Failure ]\ncrbug.com/1017164 [ Linux ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-tdd-000.html [ Failure ]\ncrbug.com/1015331 external/wpt/css/css-text/white-space/eol-spaces-bidi-001.html [ Failure ]\n\ncrbug.com/899264 external/wpt/css/css-text/letter-spacing/letter-spacing-control-chars-001.html [ Failure ]\n\ncrbug.com/1290460 [ Mac ] external/wpt/css/css-text/letter-spacing/letter-spacing-bengali-yaphala-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-005.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-003.html [ Failure ]\n\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-1.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-2.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-3.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-4.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-001.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-002.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-003.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-008.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-009.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-010.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-015.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-016.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-017.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-01.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-02.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-03.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-04.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/word-spacing/word-spacing-001.html [ Failure ]\n\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-002.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-004.html [ Failure ]\ncrbug.com/614667 external/wpt/css/css-break/grid/grid-item-fragmentation-039.html [ Failure ]\ncrbug.com/1058792 external/wpt/css/css-break/transform-007.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-break/transform-009.html [ Failure ]\ncrbug.com/1156312 external/wpt/css/css-break/widows-orphans-017.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-001.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-002.html [ Failure ]\ncrbug.com/1225630 external/wpt/css/css-multicol/large-actual-column-count.html [ Skip ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-004.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-005.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-nobackground-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-005.html [ Failure ]\ncrbug.com/1356561 external/wpt/css/css-multicol/multicol-overflow-transform-001.html [ Failure Pass ]\ncrbug.com/792435 external/wpt/css/css-multicol/multicol-rule-004.xht [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-inset-000.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-001.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-002.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-003.html [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-001.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-002.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-003.html [ Failure ]\ncrbug.com/636055 external/wpt/css/css-multicol/multicol-span-all-margin-nested-002.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-span-all-rule-001.html [ Failure ]\ncrbug.com/964183 external/wpt/css/css-multicol/multicol-width-005.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-zero-height-003.html [ Failure ]\ncrbug.com/1191124 external/wpt/css/css-multicol/spanner-fragmentation-012.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-multicol/spanner-in-opacity.html [ Failure ]\n\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-007.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-009.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-011.tentative.html [ Failure ]\ncrbug.com/1097992 external/wpt/css/css-pseudo/marker-font-variant-numeric-normal.html [ Failure ]\ncrbug.com/1060007 external/wpt/css/css-pseudo/marker-text-combine-upright.html [ Failure ]\n\n# iframe tests time out if the request is blocked as mixed content.\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/iframe-tag.https.html [ Skip Timeout ]\n\n# Different results on try bots and CQ, skipped to unblock wpt import.\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-default-css.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-element.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-window.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-scrollintoview-nested.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-smooth-positions.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-window.html [ Skip ]\n\ncrbug.com/1289222 external/wpt/css/cssom-view/scroll-behavior-smooth-navigation.html [ Skip Timeout ]\n\n# Crashes with DCHECK enabled, but not on normal Release builds.\ncrbug.com/809935 external/wpt/css/css-fonts/variations/font-style-interpolation.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-011.html [ Crash Failure Pass ]\n\n# <input disabled> does not fire click events after dispatchEvent\ncrbug.com/1115661 external/wpt/dom/events/Event-dispatch-click.html [ Timeout ]\n\ncrbug.com/1088280 [ Mac ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\ncrbug.com/1088280 [ Win ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\n\n# Implement text-decoration correctly for vertical text\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-thickness-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-underline-offset-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-001.html [ Failure ]\n\ncrbug.com/912362 external/wpt/web-animations/timing-model/timelines/timelines.html [ Failure ]\n\n# crbug.com/1315717: Deprecating <object><param>\ncrbug.com/1315717 external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Failure ]\ncrbug.com/1315717 virtual/object-param-url/external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Pass ]\n\n# Unclear if XHR events should still be fired after its frame is discarded.\ncrbug.com/881180 external/wpt/xhr/open-url-multi-window-4.htm [ Timeout ]\n\ncrbug.com/910709 navigator_language/worker_navigator_language.html [ Timeout ]\n\ncrbug.com/435547 http/tests/cachestorage/serviceworker/ignore-search-with-credentials.html [ Skip ]\n\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\n\n# [css-grid]\ncrbug.com/1045599 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-004.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/grid-definition/grid-repeat-max-width-001.html [ Failure ]\ncrbug.com/1335889 external/wpt/css/css-grid/grid-model/grid-areas-overflowing-grid-container-009.html [ Failure ]\n\n# Simple to fix - but blocked on performance regression requiring cache logic change.\ncrbug.com/1272533 external/wpt/css/css-grid/layout-algorithm/grid-intrinsic-size-dynamic-block-size.html [ Failure ]\n\n# The 'last baseline' keyword is not implemented yet\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-item-self-baseline-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-002.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-004.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-003.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html [ Failure ]\n\n# Baseline Content-Alignment is not implemented yet for CSS Grid Layout\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-align-001.html [ Failure ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-justify-001.html [ Failure ]\n\n# [css-subgrid]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-009.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-smaller-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-template-computed-nogrid.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/independent-formatting-context.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/item-percentage-height-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-002.html [ Crash Failure Timeout ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-stretch.html [ Failure ]\n\ncrbug.com/1236992 svg/dom/SVGListPropertyTearOff-gccrash.html [ Failure Pass ]\n\n# [css-animations]\ncrbug.com/816956 [ Win ] external/wpt/css/css-animations/KeyframeEffect-getKeyframes.tentative.html [ Failure ]\n\ncrbug.com/664450 http/tests/devtools/console/console-on-animation-worklet.js [ Failure Pass Timeout ]\n\n# [css-transitions]\ncrbug.com/1289685 external/wpt/css/css-transitions/properties-value-inherit-001.html [ Failure Pass ]\n\ncrbug.com/826419 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-remove-track-inband.html [ Skip ]\n\ncrbug.com/825798 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-non-snap-to-lines.html [ Failure ]\n\n# This test requires a special browser flag and seems not suitable for a wpt test, see bug.\ncrbug.com/691944 external/wpt/service-workers/service-worker/update-after-oneday.https.html [ Skip ]\n\n# These tests (erroneously) see a platform-specific User-Agent header\ncrbug.com/595993 external/wpt/service-workers/service-worker/fetch-header-visibility.https.html [ Failure ]\n\ncrbug.com/619427 [ Mac ] fast/overflow/overflow-height-float-not-removed-crash3.html [ Failure Pass ]\n\ncrbug.com/660384 external/wpt/webmessaging/with-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/without-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/with-options/broken-origin.html [ Failure ]\n\n# Added 2016-12-12\ncrbug.com/610835 http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html [ Failure Pass ]\n\ncrbug.com/892212 http/tests/wasm/wasm_remote_postMessage_test.https.html [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests from here ======\n# These tests are flaky when run in random order, which is the default on Linux & Mac since since 2016-12-16.\n\ncrbug.com/702837 virtual/text-antialias/aat-morx.html [ Skip ]\n\ncrbug.com/688670 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-removed.html [ Failure Pass ]\n\ncrbug.com/849670 http/tests/devtools/service-workers/service-worker-v8-cache.js [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests end here ======\n\n# ====== Tests from enabling .any.js/.worker.js tests begin here ======\ncrbug.com/709227 external/wpt/html/browsers/history/the-location-interface/per-global.window.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.arc.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.closed.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.curve.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.line.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.rect.worker.html [ Failure ]\n\n# ====== Tests from enabling .any.js/.worker.js tests end here ========\n\ncrbug.com/789139 http/tests/devtools/sources/debugger/live-edit-no-reveal.js [ Crash Failure Pass Timeout ]\n\n# ====== Begin of display: contents tests ======\n\ncrbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]\n\n# ====== End of display: contents tests ======\n\n# ====== Begin of other css-display tests ======\n\ncrbug.com/995106 external/wpt/css/css-display/display-flow-root-list-item-001.html [ Failure ]\n\n# ====== End of other css-display tests ======\n\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16be.html?include=workers [ Skip Timeout ]\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16le.html?include=workers [ Skip Timeout ]\n\ncrbug.com/676229 plugins/mouse-click-plugin-clears-selection.html [ Failure Pass ]\ncrbug.com/742670 plugins/iframe-plugin-bgcolor.html [ Failure Pass ]\ncrbug.com/780398 [ Mac ] plugins/mouse-capture-inside-shadow.html [ Failure Pass ]\ncrbug.com/1331239 [ Mac ] plugins/plugin-remove-subframe.html [ Crash Pass ]\n\ncrbug.com/678493 http/tests/permissions/chromium/test-request-window.html [ Pass Timeout ]\n\ncrbug.com/689781 external/wpt/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Win ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Mac ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\n\ncrbug.com/1359409 [ Mac12 ] http/tests/media/video-preload-metadata.html [ Pass Timeout ]\n\ncrbug.com/1358638 [ Mac11 ] fast/scroll-behavior/middleclick-autoscroll-nested-elements.html [ Failure Pass ]\n\ncrbug.com/1157857 virtual/percent-based-scrolling/max-percent-delta-cross-origin-iframes.html [ Failure Pass Timeout ]\n\ncrbug.com/716320 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.https.html [ Failure Timeout ]\n\n# Test timing out when SharedArrayBuffer is disabled by default.\n# See https://crbug.com/1194557\ncrbug.com/1194557 http/tests/devtools/sources/debugger-breakpoints/set-breakpoint-while-blocking-main-thread.js [ Skip Timeout ]\n\n# Test output varies depending on the bot. A single expectation file doesn't\n# work.\ncrbug.com/1194557 fast/beacon/beacon-basic.html [ Failure Pass ]\n\n# Tests are failing on CodeMirror 6 update, temporarily disable to re-open the tree.\n# Restore set-breakpoint-while-blocking-main-thread.js test to previous state [ Pass ] with\n# crbug.com/1194557 annotation as soon as crbug.com/1270207 has been fixed.\ncrbug.com/1270207 virtual/portals/http/tests/devtools/portals/portals-sources-activate.js [ Skip ]\n\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success-and-failure.html [ Timeout ]\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success.html [ Timeout ]\n\ncrbug.com/831509 external/wpt/service-workers/service-worker/skip-waiting-installed.https.html [ Failure Pass ]\n\n# Fullscreen tests are failed because of consuming user activation on fullscreen\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-twice-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-elements-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html [ Failure Timeout ]\n\n# snav tests fail because of a DCHECK\ncrbug.com/985520 virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-enter-from-interest.html [ Crash ]\n\n# User-Agent is not able to be set on XHR/fetch\ncrbug.com/571722 external/wpt/xhr/preserve-ua-header-on-redirect.htm [ Failure ]\n\n# Sheriff failures 2017-03-21\ncrbug.com/703518 http/tests/devtools/tracing/worker-js-frames.js [ Failure Pass ]\ncrbug.com/674720 http/tests/loading/preload-img-test.html [ Failure Pass ]\n\n# Sheriff failures 2017-05-11\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/source-list-parsing-04.html [ Skip ]\n\n# Sheriff failures 2017-05-16\ncrbug.com/722212 fast/events/pointerevents/mouse-pointer-event-properties.html [ Failure Pass Timeout ]\n# Crashes on win\ncrbug.com/722943 [ Win ] media/audio-repaint.html [ Crash ]\n\n# Sheriff failures 2018-08-15\ncrbug.com/874837 [ Win ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\ncrbug.com/874837 [ Linux ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\n\n# Sheiff failures 2021-04-09\n\ncrbug.com/715718 external/wpt/media-source/mediasource-remove.html [ Failure Pass ]\n\n# Temporarily disabled since tests don't make window key on Mac\ncrbug.com/1267867 [ Mac ] external/wpt/pointerevents/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] external/wpt/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] http/tests/pointer-lock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] pointer-lock/* [ Skip ]\n\n# Feature Policy changes fullscreen behaviour, tests need updating\ncrbug.com/718155 fullscreen/full-screen-restrictions.html [ Failure Timeout ]\n\ncrbug.com/852645 gamepad/full-screen-gamepad.html [ Timeout ]\n\ncrbug.com/1191123 gamepad/gamepad-polling-access.html [ Failure Pass ]\n\n# Feature Policy changes same-origin allowpaymentrequest behaviour, tests need updating\ncrbug.com/718155 payments/payment-request-in-iframe.html [ Failure ]\ncrbug.com/718155 payments/payment-request-in-iframe-nested-not-allowed.html [ Failure ]\n\n# Expect to fail. The test is applicable only when DigitalGoods flag is disabled.\ncrbug.com/1080870 http/tests/payments/payment-request-app-store-billing-mandatory-total.html [ Failure ]\n\n# Layout Tests on Swarming (Windows) - https://crbug.com/717347\ncrbug.com/713094 [ Win ] fast/css/fontfaceset-check-platform-fonts.html [ Failure Pass ]\n\n# Image decode failures due to document destruction.\ncrbug.com/721435 external/wpt/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html [ Skip ]\n\n# Test times out for unknown reasons on chromium-based browsers and Safari.\ncrbug.com/1328330 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-move-into-script-disabled-iframe.html [ Timeout ]\n\n# Test times out for some reason on Chromium browsers\ncrbug.com/1357623 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-zero-intersection-area.html [ Timeout ]\n\n# Sheriff failures 2017-05-23\ncrbug.com/725470 editing/shadow/doubleclick-on-meter-in-shadow-crash.html [ Crash Failure Pass ]\n\n# Sheriff failures 2017-06-14\ncrbug.com/737959 http/tests/misc/object-image-load-outlives-gc-without-crashing.html [ Failure Pass ]\n\ncrbug.com/737959 http/tests/misc/video-poster-image-load-outlives-gc-without-crashing.html [ Crash Failure Pass ]\n\n# module script lacks XHTML support\ncrbug.com/717643 external/wpt/html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml [ Failure ]\n\n# known bug: import() inside set{Timeout,Interval}\n\n# Service worker updates need to handle redirect appropriately.\ncrbug.com/889798 external/wpt/service-workers/service-worker/import-scripts-redirect.https.html [ Skip ]\n\n# Service workers need to handle Clear-Site-Data appropriately.\ncrbug.com/1052641 external/wpt/service-workers/service-worker/unregister-immediately-before-installed.https.html [ Skip ]\ncrbug.com/1052642 external/wpt/service-workers/service-worker/unregister-immediately-during-extendable-events.https.html [ Skip ]\n\n# Sheriff failures 2017-07-03\ncrbug.com/708994 http/tests/security/cross-frame-mouse-source-capabilities.html [ Pass Timeout ]\ncrbug.com/746128 [ Mac ] media/controls/video-enter-exit-fullscreen-without-hovering-doesnt-show-controls.html [ Failure Pass ]\n\n# Tests failing when enabling new modern media controls\ncrbug.com/831942 media/webkit-media-controls-webkit-appearance.html [ Failure Pass ]\ncrbug.com/832157 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-added.html [ Skip ]\ncrbug.com/832169 media/media-controls-fit-properly-while-zoomed.html [ Failure Pass ]\ncrbug.com/849694 [ Mac ] http/tests/media/controls/toggle-class-with-state-source-buffer.html [ Failure Pass ]\ncrbug.com/1348591 [ Win ] http/tests/media/controls/playback-speed-button-infinite-duration.html [ Failure Pass ]\n\n# Tests currently failing on Windows when run on Swarming\ncrbug.com/757165 [ Win ] compositing/culling/filter-occlusion-blur.html [ Skip ]\ncrbug.com/757165 [ Win ] css3/blending/mix-blend-mode-with-filters.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/download-resources.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/preload-default-csp.sub.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/forms/file/recover-file-input-in-unposted-form.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-aligned-not-aligned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-clipped-overflowed-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-only-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-date.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-div-scrollable-but-without-focusable-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-horizontally.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-vertically.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-iframe-recursive-offset-parent.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-not-focusable.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-without-image.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-overlapped-areas.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-simple.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-input.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-multiple-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-below.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-rightof.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-overlapping-elements.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio-group.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-single-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-symmetrically-positioned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-textarea.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-two-elements-one-line.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-z-index.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/devtools/sources/ui-source-code-metadata.js [ Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/misc/client-hints-accept-meta-preloader.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-accelerated-child-with-filter-child.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-on-accelerated-layer.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified-save-restore.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/threaded-no-composited-antialiasing/animations/svg/animated-filter-svg-element.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-clipping.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-fill-style.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-global-alpha.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-image.html [ Skip ]\n# This is timing out on non-windows platforms, marked as skip on all platforms.\ncrbug.com/757165 virtual/gpu/fast/canvas/canvas-blending-gradient-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-text.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-transforms.html [ Skip ]\n# This is currently skipped on all OSes due to crbug.com/775957\n#crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-scale-drawImage-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-strokeRect-alpha-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/image-object-in-canvas.html [ Skip ]\n\n# We cannot yet launch Canvas2D staying GPU on readback\ncrbug.com/1288118 fast/canvas/bug382588.html [ Skip ]\ncrbug.com/1288118 fast/canvas/canvas-gpu-consistency.html [ Skip ]\n\n# Antialiasing error\ncrbug.com/845973 virtual/display-compositor-pixel-dump/fast/canvas/display-compositor-pixel-dump/OffscreenCanvas-opaque-background-compositing.html [ Failure Pass ]\n\n# Tests occasionaly timing out (flaky) on WebKit Win7 dbg builder\ncrbug.com/757955 http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# This test has a fixed number of time which can depend on performance.\n\ncrbug.com/669329 http/tests/devtools/tracing/timeline-js/timeline-runtime-stats.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/769347 [ Mac ] fast/dom/inert/inert-node-is-uneditable.html [ Failure ]\n\ncrbug.com/769056 virtual/text-antialias/emoji-web-font.html [ Failure ]\ncrbug.com/1159689 [ Mac ] virtual/text-antialias/emoticons.html [ Failure Pass ]\n\ncrbug.com/770232 [ Win ] virtual/text-antialias/hyphenate-character.html [ Failure ]\n\n# Editing commands incorrectly assume no plain text length change after formatting text.\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs.html [ Failure ]\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs-in-pre.html [ Failure ]\n\n# Previous/NextWordPosition crossing editing boundaries.\ncrbug.com/900060 editing/selection/mixed-editability-8.html [ Failure ]\n\n# WPT for the missing caretPositionFromPoint implementation\ncrbug.com/388976 external/wpt/css/cssom/caretPositionFromPoint-with-transformation.html [ Timeout ]\n\n# Sheriff failure 2017-09-18\ncrbug.com/766404 [ Mac ] plugins/keyboard-events.html [ Failure Pass ]\n\n# Layout test corrupted after Skia rect tessellation change due to apparent SwiftShader bug.\n# This was previously skipped on Windows in the section for crbug.com/757165\ncrbug.com/775957 virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\n\n# Sheriff failures 2017-09-21\ncrbug.com/767469 http/tests/navigation/start-load-during-provisional-loader-detach.html [ Failure Pass ]\n\n# Sheriff failures 2017-10-02\ncrbug.com/771492 external/wpt/css/css-tables/table-model-fixup-2.html [ Failure ]\n\ncrbug.com/807191 fast/media/mq-color-gamut-picture.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-23\ncrbug.com/772411 http/tests/media/autoplay-crossorigin.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-24\ncrbug.com/773122 crbug.com/777813 [ Win ] virtual/text-antialias/font-ascent-mac.html [ Failure Pass ]\n\n# The \"Lax+POST\" or lax-allowing-unsafe intervention for SameSite-by-default\n# cookies causes POST tests to fail.\ncrbug.com/990439 external/wpt/cookies/samesite/form-post-blank.https.html [ Failure ]\ncrbug.com/843945 external/wpt/cookies/samesite/form-post-blank-reload.https.html [ Failure ]\ncrbug.com/990439 http/tests/cookies/same-site/popup-cross-site-post.https.html [ Failure ]\n\n# Flaky Windows-only content_shell crash\ncrbug.com/1162205 [ Win ] virtual/schemeful-same-site/external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\ncrbug.com/1162205 [ Win ] external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\n\n# Temporarily disable failing cookie control character tests until we implement\n# the latest spec changes. Specifically, 0x00, 0x0d and 0x0a should cause\n# cookie rejection instead of truncation, and the tab character should be\n# treated as a valid character.\ncrbug.com/1233602 external/wpt/cookies/attributes/attributes-ctl.sub.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/name/name-ctl.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/value/value-ctl.html [ Failure ]\n\n# The virtual tests run with Schemeful Same-Site disabled. These should fail to ensure the disabled feature code paths work.\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-websockets.sub.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-iframe-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-navigation.tentative.html [ Failure ]\n\n# These tests fail with Schemeful Same-Site due to their cross-schemeness. Skip them until there's a more permanent solution.\ncrbug.com/1141909 external/wpt/websockets/cookies/001.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/002.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/003.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/005.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/007.html?wss [ Skip ]\n\n# Sheriff failures 2017-12-04\ncrbug.com/667560 http/tests/devtools/elements/styles-4/inline-style-sourcemap.js [ Failure Pass ]\n\n# Double tap on modern media controls is a bit more complicated on Mac but\n# since we are not targeting Mac yet we can come back and fix this later.\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-backwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards-too-short.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-on-play-button.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-toggle-fullscreen.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/click-anywhere-to-play-pause.html [ Skip ]\n\n# Seen flaky on Linux, suppressing on Windows as well\ncrbug.com/831720 [ Win ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 [ Linux ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 media/controls/tap-to-hide-controls.html [ Failure Pass ]\n\n# These tests require Unified Autoplay.\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-default-feature-policy.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-disabled-by-feature-policy.https.sub.html [ Skip ]\n\n# Does not work on Mac\ncrbug.com/793771 [ Mac ] media/controls/scrubbing.html [ Skip ]\n\n# Different paths may have different anti-aliasing pixels 2018-02-21\nskbug.com/7641 external/wpt/css/css-paint-api/paint2d-paths.https.html [ Failure Pass ]\n\n# Sheriff failures 2018-01-25\n# Flaking on Linux Tests, WebKit Linux Trusty (also ASAN, Leak)\ncrbug.com/805794 [ Linux ] virtual/android/url-bar/bottom-fixed-adjusted-when-showing-url-bar.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-05\ncrbug.com/809152 netinfo/estimate-multiple-frames.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-20\ncrbug.com/789921 media/controls/repaint-on-resize.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-21\ncrbug.com/814585 [ Linux ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-cjk.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-22\ncrbug.com/814889 idle-callback/test-runner-run-idle-tasks.html [ Crash Pass Timeout ]\ncrbug.com/814953 fast/replaced/no-focus-ring-iframe.html [ Failure Pass ]\ncrbug.com/814964 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure Pass ]\n\n# These pass on bots with proprietary codecs (most CQ bots) while failing on bots without.\ncrbug.com/807110 external/wpt/html/semantics/embedded-content/media-elements/mime-types/canPlayType.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-addsourcebuffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-buffered.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-a-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-audio-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-framesize.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-video-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-bitrate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framerate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framesize.html [ Failure Pass ]\n# Failure and Pass for crbug.com/807110 and Timeout for crbug.com/727252.\ncrbug.com/727252 external/wpt/media-source/mediasource-endofstream.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-is-type-supported.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sequencemode-append-buffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sourcebuffer-mode-timestamps.html [ Failure Pass ]\ncrbug.com/794338 media/video-rotation.html [ Failure Pass ]\ncrbug.com/811605 media/video-poster-after-loadedmetadata.html [ Failure Pass ]\n\n# MHT works only when loaded from local FS (file://..).\ncrbug.com/778467 [ Fuchsia ] mhtml/mhtml_in_iframe.html [ Failure ]\n\n# These tests timeout when using Scenic ozone platform.\ncrbug.com/1067477 [ Fuchsia ] fast/media/matchmedium-query-api.html [ Skip ]\ncrbug.com/1067477 [ Fuchsia ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\n\n### See crbug.com/891427 comment near the top of this file:\n###crbug.com/816914 [ Mac ] fast/canvas/canvas-drawImage-live-video.html [ Failure Pass ]\ncrbug.com/817167 http/tests/devtools/oopif/oopif-cookies-refresh.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-03-02\ncrbug.com/818076 http/tests/devtools/oopif/oopif-elements-navigate-in.js [ Failure Pass ]\n\n# Sheriff 2018-03-05\ncrbug.com/818650 [ Linux ] wpt_internal/speech/scripted/speechrecognition-restart-onend.html [ Crash Pass ]\n\n# Prefetching Signed Exchange DevTools tests are flaky.\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch-fail.js [ Failure Pass ]\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch.js [ Failure Pass ]\n\n# Prefetching inspector protocol test is flaky\ncrbug.com/1347616 virtual/prefetch/http/tests/inspector-protocol/prefetch/request-will-be-sent.https.js [ Failure Pass ]\n\n# Sheriff 2018-03-22\ncrbug.com/824848 external/wpt/html/semantics/links/following-hyperlinks/activation-behavior.window.html [ Failure Pass ]\n\n# Sheriff 2018-03-26\ncrbug.com/825733 [ Win ] media/color-profile-video-seek-filter.html [ Failure Pass Timeout ]\ncrbug.com/754986 media/video-transformed.html [ Failure Pass ]\n\n# Sheriff 2018-03-29\ncrbug.com/827209 [ Win ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\ncrbug.com/827209 [ Linux ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\n\n# Utility for manual testing, not intended to be run as part of layout tests.\ncrbug.com/785955 http/tests/credentialmanagement/tools/virtual-authenticator-environment-manual.html [ Skip ]\n\n# Sheriff 2018-04-11\ncrbug.com/831796 fast/events/autoscroll-in-textfield.html [ Failure Pass ]\n\n# Sheriff 2018-04-13\ncrbug.com/833655 [ Linux ] media/controls/closed-captions-dynamic-update.html [ Skip ]\ncrbug.com/833658 media/video-controls-focus-movement-on-hide.html [ Failure Pass ]\n\n# Sheriff 2018-05-22\ncrbug.com/845610 [ Win ] http/tests/inspector-protocol/target/target-browser-context.js [ Failure Pass ]\n\ncrbug.com/843135 virtual/gpu/fast/canvas/canvas-arc-circumference-fill.html [ Failure Pass ]\n\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-arc-circumference.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference-fill.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference.html [ Failure ]\n\n# Sheriff 2018-05-31\ncrbug.com/848398 http/tests/devtools/oopif/oopif-performance-cpu-profiles.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-06-07\ncrbug.com/850358 http/tests/devtools/editor/text-editor-enter-behaviour.js [ Failure Pass Timeout ]\ncrbug.com/849978 http/tests/devtools/elements/styles-4/stylesheet-source-url-comment.js [ Failure Pass Timeout ]\n\n# User Activation\ncrbug.com/736415 crbug.com/1066190 external/wpt/html/user-activation/navigation-state-reset-crossorigin.sub.html [ Failure Timeout ]\ncrbug.com/736415 external/wpt/html/user-activation/navigation-state-reset-sameorigin.html [ Failure ]\n\n# S13N Sheriff 2018-7-11\ncrbug.com/862643 http/tests/serviceworker/navigation_preload/use-counter.html [ Failure Pass ]\n\n# Sheriff 2018-07-30\n\ncrbug.com/875884 [ Win ] lifecycle/background-change-lifecycle-count.html [ Failure Pass ]\n\n# Sheriff 2018-08-20\ncrbug.com/862589 virtual/threaded/fast/idle-callback/long_idle_periods.html [ Pass Timeout ]\n\n# fast/events/middleClickAutoscroll-* are failing on Mac\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click-hyperlink.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-drag.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-event-fired.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-in-iframe.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-latching.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-modal-scrollable-iframe-div.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs-forbidden.html [ Skip ]\n# The next also fails due to crbug.com/891427, thus disabled on all platforms.\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/selection-autoscroll-borderbelt.html [ Skip ]\n\n\n# Passes in threaded mode, fails without it. This is a real bug.\ncrbug.com/1112183 fast/scrolling/autoscroll-iframe-no-scrolling.html [ Failure ]\n\n# Sheriff 2018-09-10\ncrbug.com/881207 fast/js/regress/splice-to-remove.html [ Pass Timeout ]\n\ncrbug.com/882689 http/tests/security/cookies/third-party-cookie-blocking-worker.html [ Failure Pass ]\n\n# Sheriff 2018-10-15\ncrbug.com/895257 [ Mac ] external/wpt/css/css-fonts/variations/at-font-face-font-matching.html [ Failure Pass ]\n\n# Test is flaky under load\ncrbug.com/904389 http/tests/preload/delaying_onload_link_preload_after_discovery.html [ Failure Pass ]\n\n# Sheriff 2018-11-26\ncrbug.com/908347 media/autoplay/webaudio-audio-context-resume.html [ Failure Pass ]\n\n#Sheriff 2018-12-04\ncrbug.com/911515 [ Mac ] transforms/shadows.html [ Failure Pass ]\ncrbug.com/911782 [ Mac ] paint/invalidation/forms/submit-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# Sheriff 2018-12-06\ncrbug.com/912793 crbug.com/899087 virtual/android/fullscreen/full-screen-iframe-allowed-video.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2018-12-07\ncrbug.com/912821 http/tests/devtools/tracing/user-timing.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-12-13\ncrbug.com/910452 media/controls/buttons-after-reset.html [ Failure Pass ]\n\ncrbug.com/919272 external/wpt/resource-timing/resource-timing.html [ Skip ]\n\n# Some bots are built without H264/AVC1 encoding support.\ncrbug.com/719023 fast/mediarecorder/MediaRecorder-isTypeSupported-avc1.html [ Failure Pass ]\ncrbug.com/719023 media_capabilities/encodingInfo-avc1.html [ Failure Pass ]\n\n# Sheriff 2019-01-07\ncrbug.com/919587 [ Linux ] virtual/threaded/fast/idle-callback/idle_periods.html [ Failure Pass ]\n\n# Mac doesn't support lowLatency/desynchronized Canvas Contexts.\ncrbug.com/922218 [ Mac ] fast/canvas-api/canvas-lowlatency-getContext.html [ Failure ]\n\n# Sheriff 2019-01-14\ncrbug.com/921583 http/tests/preload/meta-viewport-link-headers.html [ Failure Pass ]\n\n# These fail (some time out, some are flaky, etc.) when landing valid changes to Mojo bindings\n# dispatch timing. Many of them seem to fail for different reasons, but pretty consistently in most\n# cases it seems like a problem around test expectation timing rather than real bugs affecting\n# production code. Because such timing bugs are relatively common in tests and it would thus be very\n# difficult to land the dispatch change without some temporary breakage, these tests are disabled\ncrbug.com/922951 fast/css/pseudo-hover-active-display-none.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 fast/forms/number/number-input-event-composed.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/cache/subresource-fragment-identifier.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/devtools/tracing/timeline-network-received-data.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/history/back-to-post.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/security/cookies/basic.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/webaudio/autoplay-crossorigin.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 media/controls/overflow-menu-hide-on-click-outside-stoppropagation.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/prefer_compositing_to_lcd_text/scrollbars/resize-scales-with-dpi-150.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/frame-model-instrumentation.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-record-reload.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Crash Failure Pass Timeout ]\n\n# Flaky devtools test for recalculating styles.\ncrbug.com/1018177 http/tests/devtools/tracing/timeline-style/timeline-recalculate-styles.js [ Failure Pass ]\n\ncrbug.com/910979 http/tests/html/validation-bubble-oopif-clip.html [ Failure Pass ]\n\n# Sheriff 2019-02-01, 2019-02-19\n# These are crashy on Win10, and seem to leave processes lying around, causing the swarming\n# task to hang.\n\n# Recently became flaky on multiple platforms (Linux and Windows primarily)\ncrbug.com/927769 fast/webgl/OffscreenCanvas-webgl-preserveDrawingBuffer.html [ Skip ]\n\n# Sheriff 2019-02-12\ncrbug.com/1072768 media/video-played-ranges-1.html [ Failure Pass Timeout ]\n\n# These started failing when network service was enabled by default.\ncrbug.com/933880 external/wpt/service-workers/service-worker/request-end-to-end.https.html [ Failure ]\ncrbug.com/933880 http/tests/inspector-protocol/network/xhr-interception-auth-fail.js [ Failure ]\n# This passes in content_shell but not in chrome with network service disabled,\n# because content_shell does not add the about: handler. With network service\n# enabled this fails in both content_shell and chrome.\ncrbug.com/933880 http/tests/misc/redirect-to-about-blank.html [ Failure Timeout ]\n\n# Sheriff 2019-02-22\ncrbug.com/934636 http/tests/security/cross-origin-indexeddb-allowed.html [ Crash Pass ]\ncrbug.com/934818 http/tests/devtools/tracing/decode-resize.js [ Failure Pass ]\n\n# Sheriff 2019-02-28\ncrbug.com/936827 external/wpt/fullscreen/api/element-request-fullscreen-and-remove-manual.html [ Failure Pass ]\n\n# Contentful First Paint failures\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate-descendant.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale-transition.html [ Failure ]\n\n# Also crbug.com/1044535\ncrbug.com/937416 http/tests/devtools/resource-tree/resource-tree-frame-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-04\n# Also crbug.com/1044418\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass ]\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-05\ncrbug.com/938200 http/tests/devtools/network/network-blocked-reason.js [ Pass Timeout ]\n\n# Caused a revert of a good change.\ncrbug.com/931533 media/video-played-collapse.html [ Failure Pass ]\n\n# Sheriff 2019-03-14\ncrbug.com/806357 virtual/threaded/fast/events/pointerevents/pinch/pointerevent_touch-action-pinch_zoom_touch.html [ Crash Failure Pass Timeout ]\n\n# Trooper 2019-03-19\ncrbug.com/943388 [ Win ] http/tests/devtools/network/network-recording-after-reload-with-screenshots-enabled.js [ Failure Pass ]\n\n# Sheriff 2019-03-25\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.js [ Failure Pass ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Failure Pass Timeout ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Failure Pass ]\n\n# Tests using testRunner.useUnfortunateSynchronousResizeMode occasionally timeout,\n# but the test coverage is still good.\ncrbug.com/919789 fast/dom/Window/window-resize-contents.html [ Pass Timeout ]\n\ncrbug.com/1021627 fast/dom/rtl-scroll-to-leftmost-and-resize.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-28\ncrbug.com/946711 http/tests/devtools/editor/text-editor-search-switch-editor.js [ Failure Pass ]\ncrbug.com/946712 [ Release ] http/tests/devtools/elements/styles-2/paste-property.js [ Crash Pass Timeout ]\n\n# Sheriff 2019-04-09\ncrbug.com/946335 [ Linux ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\ncrbug.com/946335 [ Mac ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\n\n# The postMessage() calls intended to complete the test are blocked due to being\n# cross-origin between the portal and the host..\ncrbug.com/1220891 virtual/portals/external/wpt/portals/csp/frame-src.sub.html [ Timeout ]\n\n# Sheriff 2019-04-17\ncrbug.com/953591 [ Win ] fast/forms/datalist/input-appearance-range-with-transform.html [ Failure Pass ]\ncrbug.com/953591 [ Win ] transforms/matrix-02.html [ Failure Pass ]\ncrbug.com/938884 http/tests/devtools/elements/styles-3/styles-add-blank-property.js [ Pass Timeout ]\n\n# Sheriff 2019-04-30\ncrbug.com/948785 fast/events/pointerevents/pointer-event-consumed-touchstart-in-slop-region.html [ Skip ]\n\n# This test might need to be removed.\ncrbug.com/954349 fast/forms/autofocus-in-sandbox-with-allow-scripts.html [ Timeout ]\n\n# Sheriff 2019-05-13\ncrbug.com/865432 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-blob-url.any.worker.html [ Pass Timeout ]\ncrbug.com/867532 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-data-url.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2020-05-18\ncrbug.com/988248 media/track/track-cue-rendering-position-auto.html [ Failure Pass ]\n\n# Flaky test on all platforms.\ncrbug.com/988248 media/track/track-cue-rendering-position-auto-rtl.html [ Failure Pass ]\n\n# Failing because of revert of If931c1faff528a87d8a78808f30225ebe2377072.\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/3_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-line_wrapped.html [ Failure ]\n\n# Sheriff 2019-06-04\ncrbug.com/970135 [ Mac ] virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-interested-element-indicated.html [ Failure ]\ncrbug.com/970334 [ Mac ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Failure ]\ncrbug.com/970142 http/tests/security/mixedContent/insecure-css-resources.html [ Failure ]\n\n# Sheriff 2019-06-05\ncrbug.com/971259 media/controls/volumechange-stopimmediatepropagation.html [ Failure Pass ]\n\n# Expected new failures until crbug.com/535738 is fixed. The failures also vary\n# based on codecs in build config, so just marking failure here instead of\n# specific expected text results.\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-implicit.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-negative.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-without-codecs-parameter.html [ Failure ]\n\n# Sheriff 2019-06-26\ncrbug.com/978966 [ Mac ] paint/markers/ellipsis-mixed-text-in-ltr-flow-with-markers.html [ Failure Pass ]\n\n# Sheriff 2019-06-27\ncrbug.com/979243 [ Mac ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]\ncrbug.com/979336 [ Mac ] fast/dynamic/anonymous-block-orphaned-lines.html [ Failure Pass ]\n\n# Sheriff 2019-07-04\ncrbug.com/981267 http/tests/devtools/persistence/persistence-move-breakpoints-on-reload.js [ Failure Pass Timeout ]\n# TODO(crbug.com/980588): reenable once WPT is fixed\ncrbug.com/980588 external/wpt/screen-orientation/lock-unlock-check.html [ Failure Pass ]\n\n# Sheriff 2019-07-26\ncrbug.com/988246 external/wpt/cookie-store/serviceworker_cookiechange_eventhandler_mismatched_subscription.tentative.https.any.serviceworker.html [ Skip ]\ncrbug.com/959129 http/tests/devtools/tracing/timeline-script-parse.js [ Failure Pass ]\n\n# WebRTC tests that fails (by timing out) because `getSynchronizationSources()`\n# on the audio side needs a hardware sink for the returned dictionary entries to\n# get updated.\n#\n# Temporarily replaced by:\n#   - WebRtcAudioBrowserTest.EstablishAudioOnlyCallAndVerifyGetSynchronizationSourcesWorks\n#   - WebRtcBrowserTest.EstablishVideoOnlyCallAndVerifyGetSynchronizationSourcesWorks\ncrbug.com/988432 external/wpt/webrtc/RTCRtpReceiver-getSynchronizationSources.https.html [ Pass Timeout ]\n\n# Sheriff 2019-07-29\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-07-31\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-shadow.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-all.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-padding.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-mask.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-border.html [ Failure ]\n\n# Expected failures for forced colors mode tests when the corresponding flags\n# are not enabled.\ncrbug.com/970285 external/wpt/forced-colors-mode/* [ Failure ]\ncrbug.com/970285 virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/* [ Pass ]\n\n# Sheriff 2019-08-14\ncrbug.com/993671 [ Win ] http/tests/media/video-frame-size-change.html [ Failure Pass ]\n\n#Sherrif 2019-08-16\ncrbug.com/994692 [ Linux ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\ncrbug.com/994692 [ Win ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\n\ncrbug.com/996219 [ Win ] virtual/text-antialias/emoji-vertical-origin-visual.html [ Failure ]\n\n# Sheriff 2019-08-22\ncrbug.com/994008 [ Linux ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994008 [ Win ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Linux ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Win ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\n\ncrbug.com/995669 [ Win ] http/tests/media/video-throttled-load-metadata.html [ Crash Failure Pass ]\n\ncrbug.com/1015130 external/wpt/largest-contentful-paint/first-paint-equals-lcp-text.html [ Failure Pass ]\n\ncrbug.com/1000051 media/controls/volume-slider.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-09-04\ncrbug.com/1000396 [ Win ] media/video-remove-insert-repaints.html [ Failure Pass ]\n\n# Sheriff 2019-09-09\ncrbug.com/1001817 external/wpt/css/css-ui/text-overflow-016.html [ Failure Pass ]\n\n# Tests fail because of missing scroll snap for #target and bugs in scrollIntoView\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-002.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-002.html [ Failure ]\n\n# Sheriff 2019-09-30\ncrbug.com/1003715 [ Win ] http/tests/notifications/serviceworker-notification-properties.html [ Failure Pass Timeout ]\n\n\n# Sheriff 2019-10-02\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-dom.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-hang.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/selectors/specificity-overflow.html [ Crash Pass ]\n\n# Sheriff 2019-10-16\ncrbug.com/1014812 external/wpt/animation-worklet/playback-rate.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-10-18\ncrbug.com/1015975 media/video-currentTime.html [ Failure Pass ]\n\n# Sheriff 2019-10-21\ncrbug.com/1016456 external/wpt/dom/ranges/Range-mutations-dataChange.html [ Crash Pass Timeout ]\n\n# Sheriff 2019-10-30\ncrbug.com/1014810 [ Mac ] virtual/threaded/external/wpt/animation-worklet/stateful-animator.https.html [ Crash Pass Timeout ]\n\n# Temporarily disabled to a breakpoint non-determinism issue.\ncrbug.com/1019613 http/tests/devtools/sources/debugger/debug-inlined-scripts.js [ Failure Pass ]\n\n# First frame not always painted in time\ncrbug.com/1024976 media/controls/paint-controls-webkit-appearance-none-custom-bg.html [ Failure Pass ]\n\n# iframe.freeze plumbing is not hooked up at the moment.\ncrbug.com/907125 external/wpt/lifecycle/freeze.html [ Failure ] # wpt_subtest_failure\ncrbug.com/907125 external/wpt/lifecycle/child-out-of-viewport.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/child-display-none.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/worker-dispay-none.tentative.html [ Failure Timeout ]\n\n# Sheriff 2019-11-15\ncrbug.com/1025123 external/wpt/longtask-timing/longtask-in-sibling-iframe-crossorigin.html [ Failure Pass ]\n\n# Timeout media preload test until preloading media destinations gets enabled.\ncrbug.com/977033 http/tests/priorities/resource-load-priorities-media-preload.html [ Timeout ]\n\n# Sheriff 2019-11-26\ncrbug.com/1028684 http/tests/inspector-protocol/animation/animation-release.js [ Failure Pass ]\n\n# Sheriff 2019-11-29\ncrbug.com/1019079 fast/canvas/OffscreenCanvas-placeholder-createImageBitmap.html [ Failure Pass ]\ncrbug.com/1027434 external/wpt/html/browsers/origin/cross-origin-objects/cross-origin-objects.html [ Failure Pass Timeout ]\ncrbug.com/1027434 [ Mac11 ] external/wpt/html/browsers/origin/cross-origin-objects/location-properties-smoke-test.html [ Timeout ]\n\n# Sheriff 2019-12-02\ncrbug.com/1029528 [ Linux ] http/tests/devtools/network/oopif-content.js [ Failure Pass ]\n\ncrbug.com/1031345 media/controls/overlay-play-button-tap-to-hide.html [ Pass Timeout ]\n\n# Temporary SkiaRenderer regressions\ncrbug.com/1029941 [ Linux ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1029941 [ Linux ] transforms/3d/point-mapping/3d-point-mapping-deep.html [ Failure ]\ncrbug.com/1029941 [ Linux ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1029941 [ Win ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\n\n# Failing document policy tests\ncrbug.com/993790 external/wpt/document-policy/required-policy/separate-document-policies.html [ Failure ]\n\ncrbug.com/1134464 http/tests/images/document-policy/document-policy-oversized-images-edge-cases.php [ Pass Timeout ]\n\n# Skipping because of unimplemented behaviour\ncrbug.com/965495 external/wpt/feature-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\ncrbug.com/965495 external/wpt/permissions-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\n\ncrbug.com/834302 external/wpt/permissions-policy/permissions-policy-opaque-origin.https.html [ Failure ]\n\n# Temporary suppression to allow devtools-frontend changes\ncrbug.com/1041830 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile.js [ Failure Pass ]\n\n# Sheriff 2019-12-16\ncrbug.com/1034374 http/tests/devtools/tracing/timeline-worker-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-23\ncrbug.com/1036626 http/tests/devtools/tracing/tracing-record-input-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-27\ncrbug.com/1038091 virtual/gpu-rasterization/images/jpeg-yuv-image-decoding.html [ Failure Pass ]\ncrbug.com/1038139 [ Win ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\n# Broken in https://chromium-review.googlesource.com/c/chromium/src/+/1636716\ncrbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakpoints.js [ Failure Pass Timeout ]\n\ncrbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Failure Pass ]\n\n# Sheriff 2020-01-14\ncrbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Failure Pass ]\n\n# Failing origin trial for css properties test\ncrbug.com/1041993 http/tests/origin_trials/sample-api-script-added-after-css-declaration.html [ Failure ]\n\n# Sheriff 2020-01-20\ncrbug.com/1043357 http/tests/credentialmanagement/credentialscontainer-get-with-virtual-authenticator.html [ Failure Pass Timeout ]\n\n# Ref_Tests which fail when SkiaRenderer is enable, and which cannot be\n# rebaselined. TODO(jonross): triage these into any existing bugs or file more\n# specific bugs.\ncrbug.com/1043675 [ Linux ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Linux ] http/tests/media/video-frame-size-change.html [ Failure ]\ncrbug.com/1043675 [ Linux ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] svg/custom/svg-root-with-opacity.html [ Failure ]\n\n# Sheriff 2020-01-23\ncrbug.com/1046784 http/tests/inspector-protocol/service-worker/target-reloaded-after-crash.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-28\ncrbug.com/1046440 fast/loader/submit-form-while-parsing-2.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-29\ncrbug.com/995663 [ Linux ] http/tests/media/autoplay/document-user-activation-cross-origin-feature-policy-header.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-30\ncrbug.com/1047208 http/tests/serviceworker/update-served-from-cache.html [ Failure Pass ]\ncrbug.com/1047293 [ Mac ] editing/pasteboard/pasteboard_with_unfocused_selection.html [ Failure Pass ]\n\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Failure ]\n\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Pass ]\n\n# Swiftshader issue.\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerwidth.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screeny.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-width.html [ Crash Timeout ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-appearance-zoom125.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-top-left-selection-position-after-reopen.html [ Crash Pass ]\ncrbug.com/1048149 crbug.com/1050121 [ Mac ] fast/forms/month/month-picker-appearance-zoom150.html [ Crash Failure Pass ]\n\n# SwANGLE issues\ncrbug.com/1204234 css3/blending/background-blend-mode-single-accelerated-element.html [ Failure ]\n\n# Upcoming DevTools change\ncrbug.com/1006759 http/tests/devtools/profiler/cpu-profiler-save-load.js [ Failure Pass Timeout ]\ncrbug.com/1006759 http/tests/devtools/profiler/heap-snapshot-loader.js [ Failure Pass ]\n\n# Temporarily disabled to land changes in DevTools, multiple dependent CLs\n# [1] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2049183\n# [2] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2119670\n\ncrbug.com/1049456 fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1081277 fast/scrolling/events/scrollend-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1080997 fast/scrolling/events/scrollend-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# \"in-multicol-child.html\" is laid out in legacy layout due by \"multicol\" but\n# reference is laid out by LayoutNG.\ncrbug.com/829028 [ Mac ] editing/caret/in-multicol-child.html [ Failure ]\n\n# Failing tests because of enabling scroll unification flag\n\ncrbug.com/1098383 [ Mac ] fast/events/scrollbar-double-click.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1006759 http/tests/devtools/elements/styles-1/edit-value-url-with-color.js [ Skip ]\n\n#Mixed content autoupgrades make these tests not applicable, since they check for mixed content audio/video\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/audio-tag.https.html [ Failure ]\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/video-tag.https.html [ Failure ]\ncrbug.com/1025274 http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Failure ]\n\n# Sheriff 2020-02-19\ncrbug.com/1053903 external/wpt/webxr/events_referenceSpace_reset_inline.https.html [ Failure Pass Timeout ]\n\n### Subset of scrolling tests that are failing when percent-based scrolling feature is enabled\n# Please look at FlagExpectations/enable-percent-based-scrolling for a full list of known regressions\n\n# fast/events/wheel\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure Timeout ]\n\n# fast/scrolling\ncrbug.com/1330011 virtual/main-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/mouse-scrolling-over-standard-scrollbar.html [ Failure Pass ]\n\n# fast/scrolling/events\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1357787 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\n\n#fast/scroll-behavior/\n\n### END PERCENT BASED SCROLLING TEST FAILURES\n\n# Sheriff 2020-02-28\ncrbug.com/1053861 http/tests/devtools/network/network-initiator-chain.js [ Failure Pass ]\n\ncrbug.com/1057822 http/tests/misc/synthetic-gesture-initiated-in-cross-origin-frame.html [ Crash Failure Pass ]\ncrbug.com/1131977 [ Mac ] http/tests/misc/hover-state-recomputed-on-main-frame.html [ Timeout ]\n\n### sheriff 2020-03-03\ncrbug.com/1058073 [ Mac ] http/tests/devtools/service-workers/sw-navigate-useragent.js [ Failure Pass ]\ncrbug.com/1058137 virtual/threaded/http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\n# Ecosystem-Infra Sheriff 2020-03-04\ncrbug.com/1058403 external/wpt/webaudio/the-audio-api/the-audioworklet-interface/suspended-context-messageport.https.html [ Crash Failure ]\n\n# Ecosystem-Infra Sheriff 2020-04-15\ncrbug.com/1070995 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/blob-data.https.html [ Failure Pass Timeout ]\n\n# navigation tests fail or time out when run with run_web_tests.py but passes with run_wpt_tests.py\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/reload.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/unloading-documents/prompt-and-unload-script-closeable.html [ Failure ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=windows-1252 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=x-cp1251 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=utf8 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/history/joint-session-history/joint-session-history-remove-iframe.html [ Skip Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/sandboxing/window-open-blank-from-different-initiator.html [ Pass Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-click.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-mouseup.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-pageshow.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-load.html [ Timeout ]\n\n# Tests time out, and also give different results.\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screenx.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-top-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-top.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-screenx-screeny.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-width-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-innerwidth-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/windows/noreferrer-window-name.html [ Skip Timeout ]\ncrbug.com/706350 external/wpt/html/browsers/windows/clear-window-name.https.html [ Skip Timeout ]\n\n# The wpt/html tests that are failing in some way\ncrbug.com/1317074 [ Linux ] external/wpt/html/syntax/charset/without-inheritance.html [ Failure ]\ncrbug.com/1317074 external/wpt/html/syntax/charset/after-head-after-1kb-crlf.html [ Failure ]\ncrbug.com/1317076 external/wpt/html/syntax/speculative-charset/speculative-script.tentative.html [ Failure ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/header-parsing.https.html [ Failure Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-embedder-policy/credentialless/reporting-subresource-corp.https.window.html [ Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-unsafe-none.https.html [ Skip Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-subresource-corp.https.html [ Pass Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-navigation.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/report-only-require-corp.https.html [ Failure Pass ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-same-origin.https.html [ Skip Timeout ]\ncrbug.com/1287036 [ Win10.20h2 ] external/wpt/html/cross-origin-embedder-policy/cross-origin-isolated-permission.https.html [ Timeout ]\ncrbug.com/1287036 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/multi-globals/workers-coep-report.https.html [ Failure Pass ]\ncrbug.com/1265587 external/wpt/html/user-activation/activation-trigger-pointerevent.html?pen [ Failure ]\ncrbug.com/1270351 external/wpt/html/user-activation/activation-trigger-pointerevent.html?touch [ Failure ]\ncrbug.com/1159661 external/wpt/html/interaction/focus/document-level-focus-apis/document-has-system-focus.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-serviceworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 [ Linux ] external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel.https.html [ Failure ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.https.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/location-set-and-document-open.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/animation-frames/cancel-handle-manual.html [ Skip ]\ncrbug.com/1223883 external/wpt/html/webappapis/user-prompts/newline-normalization-manual.html [ Skip ]\ncrbug.com/1222729 external/wpt/html/dom/elements/global-attributes/dir_auto-N-EN-ref.html [ Failure ]\ncrbug.com/678633 external/wpt/html/browsers/history/the-location-interface/location-protocol-setter-non-broken.html [ Failure ]\ncrbug.com/1317071 [ Mac ] virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-no-port.sub.https.html [ Failure Timeout ]\ncrbug.com/1323989 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-cross-document-traversal.html [ Pass Timeout ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_1-2.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_3-4.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_7-8.html [ Failure ]\ncrbug.com/1350975 external/wpt/html/dom/directionality/bdi-element-invalid-dir.html [ Failure ]\n\n\n# Sheriff 2020-03-06\ncrbug.com/1059262 virtual/threaded/http/tests/worklet/webexposed/global-interface-listing-paint-worklet.html [ Failure Pass ]\ncrbug.com/1059262 [ Mac ] webexposed/global-interface-listing-platform-specific.html [ Failure Pass ]\n\n# Sheriff 2020-03-08\ncrbug.com/1059645 external/wpt/pointerevents/pointerevent_coalesced_events_attributes.html [ Failure Pass ]\n\n# [virtual/...]external/wpt/web-animation test flakes\ncrbug.com/1064065 virtual/threaded/external/wpt/css/css-animations/event-dispatch.tentative.html [ Failure Pass ]\n\n# Sheriff 2020-04-01\ncrbug.com/1066122 virtual/threaded-no-composited-antialiasing/animations/events/animation-iteration-event.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-x-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-y-in-scrolling-div.html [ Failure Pass ]\n\n# Temporarily disabled for landing changes to DevTools frontend\ncrbug.com/1066579 http/tests/devtools/har-importer.js [ Failure Pass ]\n\n# COOP top navigation:\ncrbug.com/1153648 external/wpt/html/cross-origin-opener-policy/navigate-top-to-aboutblank.https.html [ Failure ]\n\n# Stale revalidation shouldn't be blocked:\ncrbug.com/1079188 external/wpt/fetch/stale-while-revalidate/revalidate-not-blocked-by-csp.html [ Timeout ]\n\n# the inspector-protocol/media tests only work in the virtual test environment.\ncrbug.com/1074129 inspector-protocol/media/media-player.js [ Timeout ]\n\n# Sheriff 2020-05-04\ncrbug.com/952717 [ Debug ] http/tests/xmlhttprequest/redirect-cross-origin-post.html [ Failure Pass ]\n\n# Sheriff 2020-05-18\ncrbug.com/1084256 [ Linux ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084256 [ Mac ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084276 [ Mac ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Crash Failure Pass ]\n\n# Temporarily disabled to land the new wasm exception handling JS API\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/exception/* [ Skip ]\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/tag/* [ Skip ]\n\n# Assorted virtual/threaded/.../wpt/scroll-animations tests\ncrbug.com/1279648 [ Mac ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-iframe.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-writing-mode-rl.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-frame-size-changed.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-inline-orientation.html [ Failure ]\ncrbug.com/1279648 [ Mac12 ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-iframe.html [ Failure ]\n\ncrbug.com/1071189 [ Debug ] editing/selection/programmatic-selection-on-mac-is-directionless.html [ Pass Timeout ]\n\n# Sheriff 2020-05-27\ncrbug.com/1046784 http/tests/devtools/elements/styles/stylesheet-tracking.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-05-29\ncrbug.com/1084637 compositing/video/video-reflection.html [ Failure Pass ]\ncrbug.com/1083362 compositing/reflections/load-video-in-reflection.html [ Failure Pass ]\ncrbug.com/1087471 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Failure Pass ]\n\n# Sheriff 2020-06-01\n# Also see crbug.com/626703, these timed-out before but now fail as well.\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure Pass ]\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure Pass ]\n\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRect.html [ Failure Pass ]\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRectPartial.html [ Failure Pass ]\n\n# Sheriff 2020-06-03\ncrbug.com/1007228 [ Mac ] external/wpt/fullscreen/api/element-request-fullscreen-and-move-to-iframe-manual.html [ Failure Pass ]\ncrbug.com/1349215 [ Mac11 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\ncrbug.com/1349215 [ Mac10.15 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\n\n# Sheriff 2020-06-06\ncrbug.com/1091843 fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2020-06-09\ncrbug.com/1093003 [ Mac ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe.sub.html [ Failure Pass ]\n\n# Sheriff 2020-06-11\ncrbug.com/1093026 [ Linux ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Failure Pass ]\n\n# Ecosystem-Infra Rotation 2020-06-15\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-stroke-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-fill-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-stroke-box.html [ Failure ]\n\n# Sheriff 2020-06-17\ncrbug.com/1092975 http/tests/inspector-protocol/target/target-expose-devtools-protocol.js [ Failure Pass ]\n\ncrbug.com/1096493 external/wpt/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https.html [ Failure ]\n\ncrbug.com/1097005 http/tests/devtools/console/console-object-preview.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-preserve-scroll.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-search.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/1093445 http/tests/loading/pdf-commit-load-callbacks.html [ Failure Pass ]\ncrbug.com/1093497 http/tests/history/client-redirect-after-push-state.html [ Failure Pass ]\n\n#Sheriff 2020-06-25\ncrbug.com/1010170 media/video-played-reset.html [ Failure Pass ]\n\n# Sheriff 2020-07-07\n# Additionally disabled on mac due to crbug.com/988248\ncrbug.com/1083302 media/controls/volumechange-muted-attribute.html [ Failure Pass ]\n\n# Sheriff 2020-07-10\n\ncrbug.com/1102167 external/wpt/fetch/redirect-navigate/preserve-fragment.html [ Pass Timeout ]\n\n# Sheriff 2020-07-13\n\ncrbug.com/1104910 fast/peerconnection/RTCPeerConnection-reload-interesting-usage.html [ Failure Pass ]\ncrbug.com/1104910 [ Mac ] editing/selection/selection-background.html [ Failure Pass ]\n\n# Sheriff 2020-07-14\n\ncrbug.com/1105271 [ Mac ] scrollbars/custom-scrollbar-adjust-on-inactive-pseudo.html [ Failure Pass ]\ncrbug.com/1105274 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile-no-url-end-to-end.js [ Failure Pass Timeout ]\n\n# This test fails due to the linked bug since input is now routed through the compositor.\ncrbug.com/1112508 fast/forms/number/number-wheel-event.html [ Failure ]\n\n# Sheriff 2020-07-20\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-time/timeline-time.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidator-invalidations.js [ Failure Pass ]\n\n# Sheriff 2020-07-22\ncrbug.com/1107722 [ Mac ] virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-script-id.js [ Failure Pass ]\n\n# Failing on Webkit Linux Leak\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\n\n# Sheriff 2020-07-23\ncrbug.com/1108786 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\ncrbug.com/1108786 [ Linux ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\n\n# Sheriff 2020-07-27\ncrbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\ncrbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Failure Pass ]\n\n# Sheriff 2020-08-03\ncrbug.com/1106429 virtual/percent-based-scrolling/max-percent-delta-page-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-05\ncrbug.com/1113050 fast/borders/border-radius-mask-video-ratio.html [ Failure Pass ]\ncrbug.com/1113127 fast/canvas/downsample-quality.html [ Crash Failure Pass ]\n\n# Sheriff 2020-08-06\ncrbug.com/1113791 [ Win ] media/video-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-17\ncrbug.com/1069546 [ Mac ] compositing/layer-creation/overflow-scroll-overlap.html [ Failure Pass ]\n\n# Unexpected demuxer success after M86 FFmpeg roll.\ncrbug.com/1117613 media/video-error-networkState.html [ Failure Timeout ]\n\n# Sheriff 2020-0-21\ncrbug.com/1120330 virtual/threaded/external/wpt/feature-policy/experimental-features/vertical-scroll-disabled-scrollbar-tentative.html [ Failure Pass ]\n\ncrbug.com/1122582 external/wpt/html/cross-origin-opener-policy/coop-csp-sandbox-navigate.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-09\ncrbug.com/1126709 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.worker.html [ Failure Pass ]\n\ncrbug.com/1136163 [ Linux ] external/wpt/pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock.html [ Failure ]\n\n# Mixed content autoupgrades make these tests not applicable, since they check for mixed content images, the tests can be removed when cleaning up pre autoupgrades mixed content code.\ncrbug.com/1042877 external/wpt/fetch/cross-origin-resource-policy/scheme-restriction.https.window.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/imageset.https.sub.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-css-image-with-reload.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-iframe.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/preload-insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-blocked.https.html [ Timeout ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-in-frame-blocked.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-reportonly.https.php [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-via-pref-image-blocked.https.html [ Failure ]\n\ncrbug.com/1046784 http/tests/devtools/sources/debugger/anonymous-script-with-source-map-breakpoint.js [ Failure Pass ]\n\n# Mixed content autoupgrades cause test to fail because test relied on http subresources to test a different origin, needs to be changed to not rely on HTTP URLs.\ncrbug.com/1042877 http/tests/security/img-crossorigin-redirect-credentials.https.html [ Failure ]\n\n# Sheriff 2020-10-09\ncrbug.com/1136687 external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture.html [ Failure Pass ]\n\ncrbug.com/1137228 [ Mac ] external/wpt/infrastructure/testdriver/click_iframe_crossorigin.sub.html [ Failure Pass ]\n\n# Rename document.featurePolicy to document.permissionsPolicy\ncrbug.com/1123116 external/wpt/permissions-policy/payment-supported-by-permissions-policy.tentative.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-all.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-self.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some-override.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-disallowed-for-all.https.sub.html [ Failure Timeout ]\n\ncrbug.com/1159445 [ Mac ] paint/invalidation/repaint-overlay/layers-overlay.html [ Failure ]\n\n#Sheriff 2020-10-21\ncrbug.com/1141206 scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\n#Sheriff 2020-10-26\ncrbug.com/1142877 [ Mac ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\ncrbug.com/1142877 [ Debug Linux ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\n\n# Sheriff 2020-11-04\ncrbug.com/1144273 http/tests/devtools/sources/debugger-ui/continue-to-location-markers-in-top-level-function.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-11-06\ncrbug.com/1146560 [ Mac ] fast/canvas/color-space/canvas-createImageBitmap-e_srgb.html [ Failure Pass ]\n\n# Sheriff 2020-11-16\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/debugger-inline-values-frames.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/reveal-execution-line.js [ Failure Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.html [ Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.worker.html [ Pass Timeout ]\ncrbug.com/1150475 fast/dom/open-and-close-by-DOM.html [ Failure Pass ]\n\n#Sheriff 2020-11-23\n# Sheriff 2021-01-22 added Timeout per crbug.com/1046784:\ncrbug.com/1149734 http/tests/devtools/sources/source-frame-toolbar-items.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-frameworks/frameworks-sourcemap.js [ Failure Pass ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/continue-to-location-markers.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/inline-scope-variables.js [ Failure Pass Timeout ]\n\n#Sheriff 2020-11-24\ncrbug.com/1087242 crbug.com/1271141 http/tests/inspector-protocol/service-worker/network-extrainfo-main-request.js [ Pass Timeout ]\ncrbug.com/1149771 [ Linux ] virtual/android/fullscreen/video-scrolled-iframe.html [ Failure Pass Timeout ]\ncrbug.com/1152532 http/tests/devtools/service-workers/user-agent-override.js [ Pass Timeout ]\n\n#Sheriff 2020-11-26\ncrbug.com/1032451 virtual/threaded-no-composited-antialiasing/animations/stability/animation-iteration-event-destroy-renderer.html [ Pass Timeout ]\ncrbug.com/931646 [ Mac ] http/tests/preload/meta-viewport-link-headers-imagesrcset.html [ Failure Pass ]\n\n# These tests will only run in the virtual test suite where the frequency\n# capping for overlay popup detection is disabled. This eliminates the need\n# for waitings in web tests to trigger a detection event.\ncrbug.com/1032681 http/tests/subresource_filter/overlay_popup_ad/* [ Skip ]\ncrbug.com/1032681 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/* [ Pass ]\n\n# DevTools roll\ncrbug.com/1144171 http/tests/devtools/report-API-errors.js [ Skip ]\n\n# Sheriff 2020-12-11\n# Flaking on Linux Trusty\ncrbug.com/1157861 http/tests/devtools/extensions/extensions-resources.js [ Failure Pass ]\ncrbug.com/1157861 http/tests/devtools/console/paintworklet-console-selector.js [ Failure Pass ]\n\n# Wpt importer Sheriff 2020-12-11\ncrbug.com/626703 [ Linux ] wpt_internal/storage/estimate-usage-details-filesystem.https.tentative.any.html [ Failure Pass ]\n\n# Wpt importer sheriff 2021-01-05\ncrbug.com/1163175 external/wpt/css/css-pseudo/first-letter-punctuation-and-space.html [ Failure ]\n\n# Sheriff 2021-01-12\ncrbug.com/1163793 http/tests/inspector-protocol/page/page-events-associated.js [ Failure Pass ]\n\n# Sheriff 2021-01-15\ncrbug.com/1167222 http/tests/websocket/multiple-connections-throttled.html [ Failure Pass ]\ncrbug.com/1167309 fast/canvas/canvas-createImageBitmap-drawImage.html [ Failure Pass ]\n\n# Sheriff 2021-01-20\ncrbug.com/1168522 external/wpt/focus/iframe-activeelement-after-focusing-out-iframes.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1050549 http/tests/devtools/console/console-correct-suggestions.js [ Failure Pass ]\n\n# Flaky test\ncrbug.com/1173439 http/tests/devtools/service-workers/service-worker-manager.js [ Pass Timeout ]\n\n# V8 roll\ncrbug.com/961059 fast/workers/worker-shared-asm-buffer.html [ Skip ]\n\ncrbug.com/1341227 [ Mac ] http/tests/workers/worker-invalid-context.html [ Skip ]\n\n# Temporarily disabled to unblock https://crrev.com/c/2979697\ncrbug.com/1222114 http/tests/devtools/console/console-dir.js [ Failure Pass ]\ncrbug.com/1222114 http/tests/devtools/console/console-format.js [ Failure Pass ]\n\ncrbug.com/1247844 external/wpt/css/css-contain/content-visibility/content-visibility-input-image.html [ Skip ]\n\n# Expected to fail with SuppressDifferentOriginSubframeJSDialogs feature disabled, tested in VirtualTestSuite\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/confirm-different-origin-frame.sub.html [ Failure ]\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-different-origin-frame.sub.html [ Failure ]\n\n# Sheriff 2021-01-27\ncrbug.com/1171331 [ Mac ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]\n\n# flaky test\ncrbug.com/1173956 http/tests/xsl/xslt-transform-with-javascript-disabled.html [ Failure Pass ]\n\n# No support for key combinations like Alt + c in testdriver.Actions for content_shell\ncrbug.com/893480 external/wpt/uievents/interface/keyboard-accesskey-click-event.html [ Timeout ]\n\n# No support for Drag-and-Drop handlers being called.\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/004.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/006.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/007.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/008.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/009.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/010.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/015.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/016.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/017.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/018.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/021.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/023.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/024.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/003.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/007.html [ Timeout ]\n\n# Sheriff 2021-02-11\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause.js [ Failure Pass ]\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause-infinite.js [ Failure Pass ]\n\n# Sheriff 2021-02-15\ncrbug.com/1177996 [ Linux ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\ncrbug.com/1178018 external/wpt/webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html [ Failure Pass ]\n\n# Expected to fail - Chrome's WebXR Depth Sensing API implementation does not currently support `gpu-optimized` usage mode.\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_dataUnavailable.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_inactiveFrame.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_incorrectUsage.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_staleView.https.html [ Failure ]\n\n# Sheriff 2021-02-17\ncrbug.com/1179117 [ Linux ] http/tests/devtools/a11y-axe-core/sources/scope-pane-a11y-test.js [ Pass Timeout ]\n\n# Sheriff 2021-02-19\ncrbug.com/1180227 [ Mac ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Crash Failure Pass ]\ncrbug.com/1180227 [ Linux ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Failure Pass ]\n\ncrbug.com/1180274 crbug.com/1046784 [ Win ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1180274 crbug.com/1046784 [ Linux ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1341227 [ Mac ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2021-02-21\ncrbug.com/1180491 [ Linux ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\ncrbug.com/1180491 [ Linux ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-02-24\ncrbug.com/1181857 external/wpt/webaudio/the-audio-api/the-analysernode-interface/test-analyser-output.html [ Failure Pass ]\n\n# Sheriff 2021-02-25\ncrbug.com/1182682 [ Linux ] http/tests/devtools/service-workers/service-workers-view.js [ Failure Pass ]\n\n# Sheriff 2021-03-08\ncrbug.com/1092462 [ Linux ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/1092462 [ Linux ] media/video-seek-past-end-paused.html [ Failure Pass ]\n\ncrbug.com/1185051 fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob-worker.html [ Failure Pass ]\n\n# Expect failure for unimplemented canvas color object input\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.transparency.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.transparency.html [ Failure ]\n\n# Sheriff 2021-03-17\ncrbug.com/1072022 http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change.html [ Pass Timeout ]\n\n# Sheriff 2021-03-19\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints.js [ Failure Pass Timeout ]\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.js [ Failure Pass Timeout ]\ncrbug.com/1190176 [ Linux ] fast/peerconnection/RTCPeerConnection-addMultipleTransceivers.html [ Crash Failure Pass ]\n\ncrbug.com/1176039 [ Mac ] virtual/stable/media/stable/video-object-fit-stable.html [ Failure Pass ]\n\ncrbug.com/1190905 [ Mac ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Linux ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Win ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\n\n# Sheriff 2021-03-31\n# Failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-01\n# More failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-06\ncrbug.com/1032451 [ Linux ] virtual/threaded/animations/stability/animation-iteration-event-destroy-renderer.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-04-07\ncrbug.com/1196620 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video-sibling.html [ Failure Pass ]\n\n# WebTransport tests should eventually run when the WebTransport WPT server is added.\ncrbug.com/1201569 external/wpt/webtransport/* [ Skip ]\ncrbug.com/1201569 wpt_internal/webtransport/* [ Skip ]\n# WebTransport server infra tests pass on python3 but fail on python2.\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.sharedworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.worker.html [ Failure Pass ]\n\ncrbug.com/1194958 fast/events/mouse-event-buttons-attribute.html [ Failure Pass ]\n\n# Sheriff 2021-04-08\ncrbug.com/1197087 external/wpt/web-animations/interfaces/Animation/finished.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 virtual/threaded/external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\n\n# Sheriff 2021-04-09\ncrbug.com/1197528 pointer-lock/pointerlockchange-pointerlockerror-events.html [ Failure Pass ]\n\ncrbug.com/1195295 fast/events/touch/multi-touch-timestamp.html [ Failure Pass ]\n\ncrbug.com/1196745 [ Mac10.15 ] editing/selection/editable-links.html [ Skip ]\n\n# Is fixed by PlzDedicatedWorker.\ncrbug.com/1060837 external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Timeout ]\ncrbug.com/1060837 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Pass ]\n\ncrbug.com/1143102 virtual/plz-dedicated-worker/http/tests/inspector-protocol/fetch/dedicated-worker-main-script.js [ Skip ]\n\n# These timeout because COEP reporting to a worker is not implemented.\ncrbug.com/1197041 external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\ncrbug.com/1197041 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\n\n# Sheriff 2021-04-12\n\ncrbug.com/1193979 [ Mac ] fast/events/tabindex-focus-blur-all.html [ Failure Pass ]\ncrbug.com/1196201 fast/events/mouse-event-source-device-event-sender.html [ Failure Pass ]\n\n# Sheriff 2021-04-13\ncrbug.com/1198698 external/wpt/clear-site-data/storage.https.html [ Pass Timeout ]\n\n# Sheriff 2021-04-14\n\n# Sheriff 2021-04-15\ncrbug.com/1196118 plugins/mouse-move-over-plugin-in-frame.html [ Failure Pass ]\ncrbug.com/1199528 http/tests/inspector-protocol/css/css-edit-redirected-css.js [ Failure Pass ]\ncrbug.com/1196317 [ Mac ] scrollbars/custom-scrollbar-thumb-width-changed-on-inactive-pseudo.html [ Failure Pass ]\n\n# Sheriff 2021-04-21\ncrbug.com/1201225 external/wpt/pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.html [ Failure Pass Timeout ]\ncrbug.com/1201346 http/tests/origin_trials/webexposed/bfcache-experiment-http-header-origin-trial.php [ Failure Pass ]\ncrbug.com/1201365 virtual/portals/http/tests/inspector-protocol/portals/device-emulation-portals.js [ Pass Timeout ]\n\n# Sheriff 2021-04-22\ncrbug.com/1191990 http/tests/serviceworker/clients-openwindow.html [ Failure Pass ]\n\n# Sheriff 2021-04-23\n\n# Image pixels are sometimes different on Fuchsia.\ncrbug.com/1201123 [ Fuchsia ] tables/mozilla/bugs/bug1188.html [ Failure Pass ]\n\n# Sheriff 2021-04-26\n\n# Sheriff 2021-04-29\ncrbug.com/1203963 [ Mac10.14 ] external/wpt/webusb/idlharness.https.any.html [ Failure Pass Timeout ]\n\n# Appears to be timing out even when marked as Slow.\ncrbug.com/1205184 [ Mac11 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\ncrbug.com/1205184 [ Mac12 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\n\n# Sheriff 2021-05-03\ncrbug.com/1205012 external/wpt/html/cross-origin-opener-policy/reporting/access-reporting/reporting-observer.html [ Pass Timeout ]\ncrbug.com/1093041 fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass ]\ncrbug.com/1093041 virtual/gpu/fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-05-10\n\n# Sheriff 2021-05-04\ncrbug.com/1205659 [ Mac ] external/wpt/IndexedDB/key-generators/reading-autoincrement-indexes.any.worker.html [ Pass Timeout ]\n\n# Blink_web_tests 2021-05-06\ncrbug.com/1205669 [ Mac10.13 ] virtual/threaded/external/wpt/animation-worklet/idlharness.any.worker.html [ Failure ]\n\n# Sheriff 2021-05-07\n# Some plzServiceWorker and plzDedicatedWorker singled out from generic sheriff rounds above\n\n# Sheriff 2021-05-10\ncrbug.com/1207709 [ Mac10.13 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Failure Pass Timeout ]\n\n# For SkiaRenderer on MacOS\ncrbug.com/1208173 [ Mac ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] css3/filters/backdrop-filter-boundary.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-rotation.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\n\n# Fix to unblock wpt-importer\ncrbug.com/1209223 [ Mac ] external/wpt/url/a-element.html [ Pass Timeout ]\ncrbug.com/1209223 external/wpt/url/url-constructor.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2021-05-17\ncrbug.com/1210199 http/tests/devtools/elements/elements-panel-restore-selection-when-node-comes-later.js [ Failure Pass ]\ncrbug.com/1199522 http/tests/devtools/layers/layers-3d-view-hit-testing.js [ Failure Pass ]\n\n# Failing css-transforms-2 web platform tests.\ncrbug.com/847356 external/wpt/css/css-transforms/transform-box/view-box-mutation-001.html [ Failure ]\n\n# Started failing after rolling new version of check-layout-th.js\ncss3/flexbox/perpendicular-writing-modes-inside-flex-item.html [ Failure ]\n\n# JXL tests fail due to rounding error differences.\n# TODO(https://crbug.com/1274220): Rebaseline all images once new tone mapping\n# lands.\ncrbug.com/1210658 virtual/jxl-enabled/images/jxl/jxl-images.html [ Skip ]\ncrbug.com/1358616 virtual/jxl-enabled/images/jxl/progressive.html [ Skip ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3099011\ncrbug.com/1199701 http/tests/devtools/console/console-big-array.js [ Skip ]\n\n# Sheriff 2021-11-15\ncrbug.com/1270362 http/tests/devtools/sources/debugger-ui/debugger-inline-values.js [ Failure Pass Timeout ]\n\n# The wpt_flags=h2 variants of these tests fail, but the other variants pass. We\n# can't handle this difference with -expected.txt files, so we have to list them\n# here.\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-2999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-server-initiated-close.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-server-initiated-close.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-extensions-empty.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-string.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-65K-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-65K-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-float64.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float64.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-unicode-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/extended-payload-length.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/001.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/002.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/005.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/events/018.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\n\n# Sheriff on 2021-05-26\ncrbug.com/1213322 [ Mac ] external/wpt/css/css-values/minmax-percentage-serialize.html [ Failure Pass ]\ncrbug.com/1213322 [ Mac ] external/wpt/html/browsers/the-window-object/named-access-on-the-window-object/window-named-properties.html [ Failure Pass ]\n\n# Do not retry slow tests that also timeouts\ncrbug.com/1210687 [ Mac10.15 ] fast/events/open-window-from-another-frame.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] storage/websql/sql-error-codes.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] external/wpt/html/user-activation/propagation-crossorigin.sub.html [ Pass Timeout ]\n\n# Sheriff 2021-06-02\ncrbug.com/1215575 [ Mac11 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215575 [ Mac12 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215584 [ Mac11 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1215584 [ Mac12 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\n\n# Fail with field trial testing config.\ncrbug.com/1219767 [ Linux ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure ]\n\n# Sheriff 2021-06-03\ncrbug.com/1185121 fast/scroll-snap/animate-fling-to-snap-points-1.html [ Failure Pass ]\ncrbug.com/1176162 http/tests/devtools/screen-orientation-override.js [ Failure Pass ]\ncrbug.com/1215949 external/wpt/pointerevents/pointerevent_iframe-touch-action-none_touch.html [ Pass Timeout ]\ncrbug.com/1216139 http/tests/devtools/bfcache/bfcache-elements-update.js [ Failure Pass ]\n\n# Sheriff 2021-06-10\ncrbug.com/1177996 [ Mac10.15 ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\n\n# CSS Highlight API painting issues related to general CSS highlight\n# pseudo-elements painting\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html [ Failure ]\ncrbug.com/1147859 [ Linux ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004-2.html [ Failure ]\ncrbug.com/1147859 [ Linux ] paint/custom-highlight-only-inheritance.html [ Failure ]\ncrbug.com/1147859 [ Linux ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\ncrbug.com/1147859 [ Mac ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\n\n\n# Green Mac11 Test\ncrbug.com/1201406 [ Mac11 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 [ Mac12 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 http/tests/credentialmanagement/publickeycredential-same-origin-with-ancestors.html [ Crash Pass Timeout ]\n\n# Sheriff 2021-06-14\ncrbug.com/1219499 external/wpt/websockets/Create-blocked-port.any.html?wpt_flags=h2 [ Failure Pass Timeout ]\ncrbug.com/1219499 [ Win ] external/wpt/websockets/Create-blocked-port.any.html?wss [ Pass Timeout ]\n\n# Sheriff 2021-06-15\ncrbug.com/1220007 [ Linux ] fullscreen/full-screen-iframe-allowed-video.html [ Failure Pass Timeout ]\n\n# Sheriff\ncrbug.com/1222097 external/wpt/mediacapture-image/detached-HTMLCanvasElement.html [ Skip ]\ncrbug.com/1222097 http/tests/canvas/captureStream-on-detached-canvas.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/blob.https.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/worker-inheritance.sub.https.html [ Skip ]\ncrbug.com/1222097 external/wpt/uievents/order-of-events/mouse-events/mouseover-out.html [ Skip ]\n\n# Sheriff 2021-06-25\n# Flaky on Webkit Linux Leak\ncrbug.com/1223601 [ Linux ] fast/scrolling/autoscroll-latch-clicked-node-if-parent-unscrollable.html [ Failure Pass ]\ncrbug.com/1223601 [ Linux ] fast/scrolling/reset-scroll-in-onscroll.html [ Failure Pass ]\n\n# Sheriff 2021-06-29\n# Flaky on Mac11 Tests\ncrbug.com/1197464 [ Mac ] plugins/refcount-leaks.html [ Failure Pass ]\n\n# Sheriff 2021-07-05\ncrbug.com/1226445 [ Mac ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-07-07\n\n# Sheriff 2021-07-12\ncrbug.com/1228432 [ Linux ] external/wpt/video-rvfc/request-video-frame-callback-before-xr-session.https.html [ Pass Timeout ]\n\n# Depends on fixing WPT cross-origin iframe click flake in crbug.com/1066891.\ncrbug.com/1227710 external/wpt/bluetooth/requestDevice/cross-origin-iframe.sub.https.window.html [ Failure Pass ]\n\n# Cross-origin WebAssembly module sharing is getting deprecated.\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-similar-but-cross-origin-success.sub.html [ Skip ]\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-domain-success.sub.html [ Skip ]\n\n# Sheriff 2021-07-13\n\n# A number of http/tests/inspector-protocol/network tests are flaky.\ncrbug.com/1196027 http/tests/inspector-protocol/network/request-interception.js [ Failure Pass ]\ncrbug.com/1228246 http/tests/inspector-protocol/network/request-interception-frame-id.js [ Failure Pass Timeout ]\n\n# linux_layout_tests_layout_ng_disabled needs its own baselines.\ncrbug.com/1231699 [ Linux ] fast/borders/border-inner-bleed.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video-shadow.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/reflections/opacity-reflection-transform.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/focus-ring.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/transformed-outlines.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] virtual/text-antialias/color-emoji.html [ Failure Pass ]\n\n# Other devtools flaky tests outside of http/tests/inspector-protocol/network.\ncrbug.com/1228261 http/tests/inspector-protocol/browser-grant-permissions.js [ Failure Pass Timeout ]\n\n# Flakes that might be caused or aggravated by PlzServiceWorker\ncrbug.com/996511 external/wpt/service-workers/cache-storage/window/cache-abort.https.html [ Crash Failure Pass ]\ncrbug.com/996511 external/wpt/service-workers/service-worker/getregistrations.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-07-14\ncrbug.com/1229039 [ Linux ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\ncrbug.com/1229039 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\n\n# Test fails due to more accurate size reporting in heap snapshots.\ncrbug.com/1229212 inspector-protocol/heap-profiler/heap-samples-in-snapshot.js [ Failure ]\n\n# Sheriff 2021-07-15\ncrbug.com/1229666 external/wpt/html/semantics/forms/form-submission-0/urlencoded2.window.html [ Pass Timeout ]\ncrbug.com/1093027 http/tests/credentialmanagement/credentialscontainer-create-with-virtual-authenticator.html [ Crash Failure Pass Timeout ]\n# The next test was originally skipped on mac for lack of support (crbug.com/613672). It is now skipped everywhere due to flakiness.\ncrbug.com/1229708 fast/events/pointerevents/pointer-event-in-slop-region.html [ Skip ]\n# pause-on-elements-panel.js is marked as Slow, so it's required to also be Skipped due to it Timing out.\ncrbug.com/1229725 http/tests/devtools/sources/debugger-pause/pause-on-elements-panel.js [ Crash Failure Pass Timeout ]\ncrbug.com/1085647 external/wpt/pointerevents/compat/pointerevent_mouse-pointer-preventdefault.html [ Pass Timeout ]\ncrbug.com/1087232 http/tests/devtools/network/network-worker-fetch-blocked.js [ Failure Pass ]\ncrbug.com/1229802 fast/events/pointerevents/multi-touch-events.html [ Failure Pass ]\ncrbug.com/1181886 external/wpt/pointerevents/pointerevent_movementxy.html?* [ Failure Pass Timeout ]\n\n# Sheriff 2021-07-21\ncrbug.com/1231431 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure ]\n\n# Sheriff 2021-07-22\ncrbug.com/1222097 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]\ncrbug.com/1231989 [ Linux ] external/wpt/html/cross-origin-embedder-policy/shared-workers.https.html [ Failure Pass ]\n\n# Sheriff 2021-07-28\ncrbug.com/1234057 external/wpt/css/css-paint-api/no-op-animation.https.html [ Failure Pass ]\n\n# Temporarily disabling progress based worklet animation tests.\ncrbug.com/1238130 animations/animationworklet/playback-rate-scroll-timeline-accelerated-property.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dispose.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dynamic-update.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-compositable.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-scrollable.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/inactive-timeline.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/scroll-timeline-writing-modes.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-creation.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-root-scroller.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline.https.html [ Timeout ]\n\n# Sheriff 2021-07-29\ncrbug.com/626703 http/tests/security/cross-frame-access-put.html [ Failure Pass ]\n\n# Sheriff 2021-07-30\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio+video.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-video.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-02\ncrbug.com/1215390 [ Linux ] external/wpt/pointerevents/pointerevent_pointerId_scope.html [ Failure Pass ]\n\n# Sheriff 2021-08-12\ncrbug.com/1237640 http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Pass Timeout ]\ncrbug.com/1239175 http/tests/navigation/same-and-different-back.html [ Failure Pass ]\ncrbug.com/1239164 http/tests/inspector-protocol/network/navigate-iframe-in2in.js [ Failure Pass ]\ncrbug.com/1237909 external/wpt/webrtc-svc/RTCRtpParameters-scalability.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-19\ncrbug.com/1234315 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Failure Timeout ]\n\n# Sheriff 2021-08-20\ncrbug.com/1194498 http/tests/misc/iframe-script-modify-attr.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-23\ncrbug.com/1242243 external/wpt/css/css-paint-api/parse-input-arguments-018.https.html [ Crash Failure Pass ]\n\n# Sheriff 2021-08-25\ncrbug.com/1243128 [ Win ] external/wpt/web-share/disabled-by-permissions-policy.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-26\ncrbug.com/1243707 [ Debug Linux ] http/tests/inspector-protocol/target/auto-attach-related-sw.js [ Crash Pass ]\n\n# Sheriff 2021-09-03\ncrbug.com/1246351 http/tests/misc/scroll-cross-origin-iframes-scrollbar.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-09-06\n# All of these suffer from the same problem of of a\n# DCHECK(!snapshot.drawsNothing()) failing on Macs:\n# Also reported as failing via crbug.com/1233766\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Crash Failure Pass Timeout ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-keyframes.https.html [ Crash Failure Pass ]\n# Previously reported as fialing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-immediately.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-timing.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/1233766 on Mac11:\n# Previously reported as failing via crbug.com/626703 on Mac10.15:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-2.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-cancel.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-before-start.https.html [ Crash Failure Pass ]\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html [ Crash Failure Pass ]\n\n# [CompositeClipPathAnimations] failing test\ncrbug.com/1249071 virtual/composite-clip-path-animation/external/wpt/css/css-masking/clip-path/animations/clip-path-animation-filter.html [ Crash Failure Pass ]\n\n# Following tests fail on mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/image-src-change.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-oversized-images-forced-layout.php [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/transformed-document-element.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/codec-tests/webm/webm-decode.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-detune-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-playbackrate-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Oscillator/no-dezippering.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/color/color-picker-escape-cancellation-revert.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/dom/geometry-interfaces-dom-matrix-rotate.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-021.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-025.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-004.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Failures that surfaced on the mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\n\n# Flakes that surfaced on the mac12 and mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/service-worker-controlled-after-restore.https.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12 ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe-in-multicol.sub.html [ Failure Pass ]\n\n# Sheriff 2022-07-04\ncrbug.com/1341689 [ Linux ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Following tests timeout on mac11-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Timeout ]\n\n# Flaky tests in mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/12-55.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/color-profile-image-filter-all.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\n\n# mac-arm CI 10-01-2021\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/opened-document-security-origin-resets-on-navigation.html [ Timeout ]\n\n# mac-arm CI 10-05-2021\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/no-alloc-direct-call/fast/canvas/canvas-lost-gpu-context.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] svg/animations/animate-setcurrenttime.html [ Crash ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\n\n#devtool flaky test crbug.com/1046784\ncrbug.com/1046784 [ Mac12 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2021-09-16\ncrbug.com/1250457 [ Mac ] storage/websql/open-database-set-empty-version.html [ Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/portals/http/tests/devtools/portals/portals-console.js [ Failure Pass Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/prefer_compositing_to_lcd_text/scrollbars/custom-scrollbar-inactive-pseudo.html [ Timeout ]\n\ncrbug.com/1249622 external/wpt/largest-contentful-paint/initially-invisible-images.html [ Failure ]\ncrbug.com/1249622 virtual/initially-invisible-images-lcp/external/wpt/largest-contentful-paint/initially-invisible-images.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Pass ]\n\n# FileSystemHandle::move() is temporarily disabled outside of the Origin Private File System\ncrbug.com/1247850 external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Linux ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Mac11 ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Win ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\n# FileSystemHandle::move() is temporarily disabled for directory handles\ncrbug.com/1250534 external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\n\n# crbug.com/1293591: Many virtual/gpu-rasterization/images/* tests are flaky\ncrbug.com/1293591 images/color-profile-animate-rotate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-animate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-cross-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-repeat.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-space.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-border-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-clip.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-group.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-iframe.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas-pattern.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-shape.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-mask-image-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-object.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg-fill-text.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/jpeg-with-color-profile.html [ Failure Pass ]\n\n# crbug.com/1339051: some ref tests generate output with minor differences.\ncrbug.com/1339051 [ Linux ] compositing/text-on-scaled-layer.html [ Failure ]\ncrbug.com/1339051 [ Linux ] external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] fast/forms/color/color-picker-appearance-zoom125.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/backface-visibility-interop/external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/content-with-transform-new-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/object-view-box-old-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/web-animations-api.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/oopr-canvas2d/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces.html [ Failure ]\n\n# Sheriff 2021-09-27\n# Revisit once crbug.com/1123886 is addressed.\n# Likely has the same root cause for crashes.\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/930462 external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\ncrbug.com/930462 virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\n\n# Sheriff 2021-09-29\n\n# Sheriff 2021-10-01\ncrbug.com/1255221 http/tests/devtools/elements/styles-4/svg-style.js [ Failure Pass ]\n\n# Skip devtools test hitting an unexpected tracing infrastructure exception 2021-10-04\ncrbug.com/1255679 http/tests/devtools/service-workers/service-workers-wasm-test.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-10-05\ncrbug.com/1256755 http/tests/xmlhttprequest/cross-origin-unsupported-url.html [ Failure Pass ]\ncrbug.com/1256770 [ Mac ] svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr.html [ Failure Pass ]\n\n# Disabled to allow devtools-frontend roll\ncrbug.com/1258618 virtual/portals/http/tests/devtools/portals/portals-elements-nesting-after-adoption.js [ Skip ]\n\n# Sheriff 2021-10-06\ncrbug.com/1257298 svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ Failure Pass ]\n\n# Sheriff 2021-10-12\ncrbug.com/1259133 [ Mac10.14 ] external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\ncrbug.com/1259133 [ Mac10.14 ] virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\n\n# Data URL navigation within Fenced Frames currently crashed in the MPArch implementation.\ncrbug.com/1243568 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/window-data-url-navigation.https.html [ Timeout ]\n\n# Fragment navigations are treated as same-document in ShadowDOM because it doesn't distinguish embedder-initiated navigations.\ncrbug.com/1262022 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/fragment-navigation.https.html [ Timeout ]\n\n# Sheriff 2021-10-15, 2021-12-07\ncrbug.com/1256763 [ Win ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Mac ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Linux ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\n\ncrbug.com/1260393 [ Mac ] virtual/oopr-canvas2d/fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2021-10-19\ncrbug.com/1256763 [ Linux ] images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/1259277 fast/events/message-port-multi.html [ Skip ]\n\n# Sheriff 2021-10-26\ncrbug.com/1263732 http/tests/devtools/tracing/timeline-paint/timeline-paint-image.js [ Failure Pass ]\n\n# Sheriff 2021-10-29\ncrbug.com/1264670 [ Linux ] http/tests/devtools/resource-tree/resource-tree-frame-add.js [ Failure Pass ]\n\n# TODO(https://crbug.com/1265311): Make the test behave the same way on all platforms\ncrbug.com/1265311 http/tests/navigation/location-change-repeated-from-blank.html [ Failure Pass ]\n\n# Sheriff 2021-11-03\ncrbug.com/1266221 [ Mac11-arm64 ] virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemFileHandle-create-sync-access-handle.https.tentative.window.html [ Failure Pass ]\n\n# Sheriff 2021-11-09\ncrbug.com/1269535 http/tests/misc/resource-timing-sizes-multipart.html [ Failure Pass Timeout ]\n\n# This test is flaky on all platforms\ncrbug.com/1191846 [ Mac11 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Mac12 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass ]\n\n# Sheriff 2021-11-10\ncrbug.com/1268963 [ Linux ] external/wpt/resource-timing/object-not-found-after-TAO-cross-origin-redirect.html [ Failure Pass ]\n\n# Sheriff 2021-11-12\ncrbug.com/1268594 [ Linux ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Mac ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Win ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\n\n# Security OWP fixit week\ncrbug.com/1270355 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/009.html [ Timeout ]\n\n# Sheriff 2021-11-18\ncrbug.com/1180993 external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-19\ncrbug.com/1186771 [ Mac ] fast/scroll-snap/snaps-after-scrollbar-scrolling-track.html [ Crash ]\ncrbug.com/894077 [ Linux ] virtual/android/fullscreen/video-fixed-background.html [ Failure Pass ]\ncrbug.com/1271336 external/wpt/native-io/detach_iframe_during_open.https.window.html [ Crash Pass ]\n\n# Sheriff 2021-11-22\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-test.js [ Failure Pass Timeout ]\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/stale-revalidation-test.js [ Failure Pass Timeout ]\ncrbug.com/1272380 http/tests/devtools/bindings/bindings-multiple-frames.js [ Failure Pass ]\n\n# Flaky on mac\ncrbug.com/1263709 [ Mac ] http/tests/devtools/elements/node-xpath.js [ Failure ]\n\n# Flaky on Mac and Windows\ncrbug.com/1272199 external/wpt/websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1272203 external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\n\n# Times out flakily on all platforms. Previously marked slow, crbug.com/874695.\ncrbug.com/1272801 http/tests/permissions/chromium/test-request-sharedworker.html [ Pass Timeout ]\n\n# Flaky with setTimeout without clamp\ncrbug.com/1272955 http/tests/devtools/extensions/extensions-timeline-api.js [ Failure Pass ]\ncrbug.com/1302309 external/wpt/streams/transferable/writable-stream.html [ Failure Pass ]\n\n# Test is very flaky (score of 223).\ncrbug.com/1274919 http/tests/inspector-protocol/page/consecutive-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-23\ncrbug.com/1046784 http/tests/devtools/tracing/timeline-receive-response-event.js [ Failure Pass ]\n\n# Sheriff 2021-11-24\ncrbug.com/1273541 fast/block/float/float-on-clean-line-subsequently-dirtied.html [ Failure Pass ]\n\n# Sheriff 2021-11-26\ncrbug.com/1201879 [ Linux ] http/tests/inspector-protocol/issues/mixed-content-issue-creation-js-within-oopif.js [ Failure Pass Timeout ]\ncrbug.com/1274171 inspector-protocol/debugger/debugger-setTimeout-sourceUrl-dedicated-worker-loop.js [ Pass Timeout ]\ncrbug.com/1271485 http/tests/inspector-protocol/network/load-network-resource-different-frame-cookie.js [ Failure Pass Timeout ]\ncrbug.com/1228803 [ Linux ] fast/peerconnection/RTCPeerConnection-garbagecollected.html [ Failure Pass ]\n\n# Sheriff 2021-11-29\ncrbug.com/1274458 external/wpt/audio-output/selectAudioOutput-permissions-policy.https.sub.html [ Failure Pass ]\ncrbug.com/1239485 [ Mac ] fast/frames/iframe-plugin-load-remove-document-crash.html [ Failure Pass ]\n\n# Sheriff 2021-12-01\ncrbug.com/1275658 http/tests/misc/script-after-slow-stylesheet-removed.html [ Failure Pass ]\ncrbug.com/1275716 [ Mac ] fast/forms/text-control-intrinsic-widths.html [ Failure Pass ]\n\n# Sheriff 2021-12-02\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-top-left.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-screenx-screeny.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-innerheight-innerwidth.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-width-height.html [ Skip ]\ncrbug.com/1275967 [ Linux ] external/wpt/permissions-policy/permissions-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1275944 [ Mac ] http/tests/devtools/sources/debugger-ui/reveal-not-skipped.js [ Failure Pass ]\ncrbug.com/1276207 virtual/gpu-rasterization/images/color-profile-image-object-fit.html [ Failure Pass ]\ncrbug.com/1276208 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-fillPath-alpha-shadow.html [ Pass Timeout ]\ncrbug.com/1276290 [ Mac ] wpt_internal/mediastream/mediastreamtrackprocessor-transfer-to-worker.html [ Skip ]\n\n# Sheriff 2021-12-03\n\ncrbug.com/1277973 http/tests/xmlhttprequest/uri-resolution-opera-open-007.html [ Crash Failure Pass ]\n\n# Sheriff 2021-12-13\ncrbug.com/1279586 [ Mac ] external/wpt/IndexedDB/idbobjectstore-rename-abort.html [ Failure ]\n\ncrbug.com/1159463 crbug.com/1278570 [ Linux ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac11 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac12 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\n\n# Sheriff 2021-12-21\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.canvas.source-out.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.clip.xor.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.operation.darker.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.uncovered.pattern.source-in.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.null.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.wrongtype.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.clearRect.path.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.fillRect.zero.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large-manual.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-4.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.hsl-5.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.gradient.object.current.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.round.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.square.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.miter.obtuse.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/fill-and-stroke-styles/2d.fillStyle.parse.current.notrendered.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-drawImage-offscreenCanvas.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/pixel-manipulation/2d.imageData.get.order.cols.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/text-styles/2d.text.font.parse.tiny.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/transformations/2d.transformation.transform.multiply.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-ImageBitmap-cloned.html [ Pass Timeout ]\ncrbug.com/1281782 virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-video.html [ Skip ]\ncrbug.com/1281792 external/wpt/event-timing/min-duration-threshold.html [ Failure Pass ]\n\ncrbug.com/1285857 plugins/plugin-destroyed-enumerate.html [ Failure Pass ]\n\n# Sheriff 2021-12-22\ncrbug.com/1179857 [ Linux ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Mac10.13 ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Win ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Pass Timeout ]\n\n# Sheriff 2021-12-22\ncrbug.com/1283295 [ Mac ] fast/text-autosizing/hackernews-comments.html [ Failure Pass ]\n\n# Sheriff 2021-12-30\ncrbug.com/1229096 [ Win ] fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# Sheriff 2022-01-04\ncrbug.com/1283865 external/wpt/webmessaging/without-ports/020.html [ Failure Pass ]\n\n# Sheriff 2022-01-05\ncrbug.com/1284572 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-module-test.js [ Failure Pass Timeout ]\n\n# Incomplete support for mouse wheel in test_driver.\ncrbug.com/1285411 external/wpt/css/css-scroll-snap/input/mouse-wheel.html [ Timeout ]\n\n# Sheriff 2022-01-07\ncrbug.com/1285438 fast/layers/clip-rects-transformed.html [ Failure Pass ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-browser-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-subresource.js [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-01-12\ncrbug.com/1286619 [ Mac ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\ncrbug.com/1225606 virtual/sanitizer-api-namespaces/external/wpt/sanitizer-api/sanitizer-names.https.tentative.html [ Failure ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3657449\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-navigate.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-main-frame-navigated.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-navigator-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-bindings-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-navigator-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger/network-uisourcecode-provider.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-panel.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-with-same-source-url.js [ Failure Pass ]\n\n# Sheriff 2022-01-17\ncrbug.com/1233938 http/tests/notifications/click-shared-worker.html [ Pass Timeout ]\n# Temporarily disable test to allow fixing of devtools path escaping\ncrbug.com/1094436 http/tests/devtools/overrides/project-added-with-existing-files-bind.js [ Failure Timeout ]\ncrbug.com/1256763 virtual/gpu-rasterization/images/color-profile-background-image-cover.html [ Failure Pass ]\n\n# Sheriff 2022-01-18\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/redirect-loop-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/window/thorough/cors-preflight2-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html [ Pass Timeout ]\n\n# Flakiness of WIP MediaStreamTrack on workers.\ncrbug.com/1290767 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-pipes-data-in-worker.https.html [ Crash Pass ]\ncrbug.com/1290976 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-shared-worker.https.html [ Crash Pass ]\ncrbug.com/1291850 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-service-worker.https.html [ Crash Pass ]\n\n# Temporarily disable tests to land branded types related changes.\ncrbug.com/1253323 [ Win ] http/tests/devtools/sources/debugger-breakpoints/nodejs-set-breakpoint.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/persistence/automapping-urlencoded-paths.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/sources/debugger/navigator-view.js [ Skip ]\n\n# Sheriff 2022-01-26\ncrbug.com/1290978 [ Win ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Mac ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Linux ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-02-01\n# Flaky test on Mac\ncrbug.com/1292843 [ Mac ] external/wpt/css/css-transforms/animation/perspective-origin-interpolation.html [ Failure Pass ]\ncrbug.com/1292844 [ Mac ] external/wpt/css/css-writing-modes/alt-display-vertical-001-manual.html [ Failure Pass ]\ncrbug.com/1292865 [ Mac ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Failure Pass ]\ncrbug.com/1292869 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/audioparam-cancel-and-hold.html [ Failure Pass ]\ncrbug.com/1292871 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/k-rate-dynamics-compressor-connections.html [ Failure Pass ]\ncrbug.com/1292873 [ Mac ] html/selectmenu/selectmenu-slot-warning-button.html [ Failure Pass ]\ncrbug.com/1292874 [ Mac ] html/selectmenu/selectmenu-slot-warning-listbox.html [ Failure Pass ]\ncrbug.com/1292876 [ Mac ] http/tests/devtools/console/console-time.js [ Failure Pass ]\n\ncrbug.com/1038139 [ Linux ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\ncrbug.com/1038139 [ Mac ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\ncrbug.com/1309664 virtual/no-forced-frame-updates/external/wpt/html/dom/render-blocking/render-blocked-apis-by-preload-link.tentative.html [ Failure ]\n\n# Sheriff 2022-02-08\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-fixed-scrolling.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-opacity-overlay.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/video/video-controls-squashing.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/controls/video-overlay-cast-light-rendering.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/2-comp.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-canvas.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/motion-jpeg-single-frame.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-jpeg-with-adobe-marker-only.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/webp-color-profile-lossless.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image-profile-match.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-colorspace-hw.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-hw.html [ Failure ]\n\n# Sheriff 2022-02-09\ncrbug.com/1295707 http/tests/devtools/elements/elements-treeoutline-copy.js [ Failure Pass ]\n\n# Disable to skip performance test caused by potential O(n^2) problem in AXObjectCacheImpl::ChildrenChanged\ncrbug.com/1293714 external/wpt/css/selectors/invalidation/has-complexity.html [ Skip ]\n\n# Sheriff 2022-02-16\ncrbug.com/1297416 [ Mac Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Linux Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Release Win10.20h2 ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\n\n# Sheriff 2022-02-22\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker/thorough/redirect-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/window/thorough/cors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/workers/thorough/cookie-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299948 [ Mac ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]\ncrbug.com/1299972 [ Linux ] screen_orientation/screenorientation-unsupported-no-crash.html [ Failure Pass Timeout ]\n\n# Disable flaky test for further investigation\ncrbug.com/1229801 http/tests/devtools/elements/css-rule-hover-highlights-selectors.js [ Failure Pass ]\n\n# Sheriff 2022-03-03\ncrbug.com/1302571 virtual/threaded/http/tests/devtools/isolated-code-cache/cross-origin-test.js [ Skip ]\n\n# Sheriff 2022-03-04\ncrbug.com/1302856 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-png-with-cmyk-color-profile.html [ Failure Pass ]\n\ncrbug.com/1298836 external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\ncrbug.com/1298836 virtual/plz-dedicated-worker/external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\n\n# Anonymous iframe:\n#------------------\n#\n# Anonymous iframe > CacheStorage:\n# From two same-origin-different-partition context, the second `cache.put`\n# request hangs indefinitely.\ncrbug.com/1285275 external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\n\n# Sheriff 2022-03-10\ncrbug.com/1304956 storage/indexeddb/dont-wedge.html [ Failure Pass ]\n\n# Sheriff 2022-03-15\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/force-load-at-top.html [ Pass Timeout ]\ncrbug.com/1269534 fast/spatial-navigation/snav-zero-margin-content.html [ Failure Pass ]\ncrbug.com/1295980 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1295980 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1298633 http/tests/inspector-protocol/network/cross-origin-isolation/coep-load-error-reporting-worker.js [ Pass Timeout ]\n\n# Sheriff 2022-03-18\ncrbug.com/1290040 external/wpt/service-workers/service-worker/same-site-cookies.https.html [ Skip ]\n\n# WebAudio flaky timeout (crbug.com/1307741)\ncrbug.com/1307741 [ Mac ] external/wpt/webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-routing.html [ Timeout ]\ncrbug.com/1307741 webaudio/AudioParam/audioparam-k-rate.html [ Timeout ]\n\n# WebAudio internals flaky GC (crbug.com/1312164)\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-wrapper.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/scriptprocessornode-premature-death.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-close.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-gc.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-gc.html [ Skip ]\n\n# Sheriff 2022-03-21: More flaky tests.\ncrbug.com/1272376 [ Mac ] plugins/plugin-document-back-forward.html [ Failure Pass ]\n\n# Tests that need updates due to rounding math in layout\ncrbug.com/1309975 http/tests/devtools/console/console-viewport-indices.js [ Failure ]\ncrbug.com/1309975 http/tests/devtools/console/viewport-testing/console-stick-to-bottom-expand-object.js [ Failure ]\n\n# Sheriff 2022-03-23: More flaky tests.\ncrbug.com/1309483 [ Win ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1309633 [ Mac ] external/wpt/FileAPI/url/url-lifetime.html [ Failure ]\n\n# Sheriff 2022-03-24\ncrbug.com/1309756 http/tests/images/force-reload.html [ Skip ]\ncrbug.com/1309756 [ Mac11-arm64 ] http/tests/images/force-reload-image-document.html [ Skip ]\n\n# Sheriff 2022-03-25\ncrbug.com/1197296 [ Linux ] virtual/unified-autoplay/external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1197296 [ Linux ] external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\n\n# Sheriff 2022-03-28\ncrbug.com/1311015 [ Mac ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311015 [ Win ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311128 external/wpt/paint-timing/fcp-only/fcp-document-opacity-text.html [ Skip ]\n\n# Navigation API incorrectly leaves promises forever unsettled (crbug.com/1311786)\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-parent.html [ Skip ]\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-sibling.html [ Skip ]\n\n# Scroll Unification known issues (go/su-web-tests) for enabling in test:\ncrbug.com/1311431 [ Mac ] fast/scroll-behavior/overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1248581 fast/scrolling/resize-corner-tracking-touch.html [ Failure Pass ]\ncrbug.com/1312036 virtual/hidpi/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure Pass ]\n\n# These tests fail on SwiftShader FEMU due to a change in log/exp implementation.\ncrbug.com/1311456 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit.html [ Skip ]\ncrbug.com/1311456 [ Fuchsia ] tables/mozilla/core/bloomberg.html [ Skip ]\n\n# Sheriff 2022-04-01\ncrbug.com/1312266 [ Mac10.13 ] external/wpt/preload/preload-time-to-fetch.https.html [ Failure ]\n\n# Sheriff 2022-04-05\ncrbug.com/1203491 [ Linux ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1203491 [ Win ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1313282 inspector-protocol/input/dispatchMouseEvent.js [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/1254163 [ Mac10.13 ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure ]\ncrbug.com/1313396 [ Linux ] external/wpt/dom/events/Event-dispatch-on-disabled-elements.html [ Failure Pass ]\ncrbug.com/1194945 external/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\ncrbug.com/1244896 fast/mediacapturefromelement/CanvasCaptureMediaStream-set-size-too-large.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-06\ncrbug.com/1290670 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-mandatory-getStats.https.html [ Failure Pass ]\ncrbug.com/1313894 [ Mac10.14 ] rootscroller/root-scroller-paint-order.html [ Failure Pass ]\ncrbug.com/1314130 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\n\n# Sheriff 2022-04-07\ncrbug.com/1314314 virtual/percent-based-scrolling/fast/scrolling/scrollbars/mouse-autoscrolling-on-deleted-scrollbar.html [ Skip ]\ncrbug.com/1314323 [ Win ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scrolling-over-custom-scrollbar.html [ Skip ]\n\ncrbug.com/1313970 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure ]\n\n# Sheriff 2022-04-08\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-tiled-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode-tiled.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-2.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-gradient.html [ Failure Pass ]\n\n# Sheriff 2022-04-11\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-color.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-crossfade-image-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-color.html [ Failure Pass ]\n\n# Sheriff 2022-04-12\ncrbug.com/1315300 [ Linux ] http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Failure Pass ]\n\n# HighlightOverlayPainting: decoration painting hasn\u2019t landed yet.\ncrbug.com/1147859 virtual/css-highlight-overlay-painting/wpt_internal/css/css-pseudo/target-text-001.html [ Failure ]\n\ncrbug.com/1316341 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\ncrbug.com/1316341 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-18, failing on Mac and WebKit Win10 builders.\ncrbug.com/1317007 external/wpt/mimesniff/mime-types/charset-parameter.window.html [ Failure Pass ]\n\n# Sheriff 2022-04-18\n# TODO(crbug.com/1316144): [Crash] Re-enable this test\n# TODO(crbug.com/1334265): [Failure] Bug fix temporarily reverted while compat issues are worked out\ncrbug.com/1316144 external/wpt/css/cssom-view/scrollIntoView-fixed.html [ Crash Failure Pass ]\n\ncrbug.com/1296449 [ Linux Release ] external/wpt/workers/SharedWorker-MessageEvent-source.any.sharedworker.html [ Skip ]\n\n# Sheriff 2022-04-20\ncrbug.com/1253971 [ Mac ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-parts-structure.tentative.html [ Timeout ]\n\n# Sheriff 2022-04-21\ncrbug.com/1318318 external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318318 virtual/plz-dedicated-worker/external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318561 [ Linux ] external/wpt/x-frame-options/get-decode-split.html [ Failure Pass ]\n\n# Temp disable MST transfer tests until Browser feature can be enabled in tests\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer.https.html [ Skip ]\n# Explicit PASS expectation for the virtual suite, to stop it inheriting \"Skip\".\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Pass ]\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Pass ]\n\n# Sheriff 2022-04-22\ncrbug.com/1318695 http/tests/devtools/elements/highlight/highlight-multiple-css-grid.js [ Failure Pass ]\ncrbug.com/1318929 http/tests/devtools/console/console-uncaught-promise.js [ Failure Pass ]\ncrbug.com/1282966 http/tests/security/mixedContent/insecure-plugin-in-iframe.html [ Failure Pass ]\ncrbug.com/1318952 http/tests/inspector-protocol/fetch/fetch-samesite-cookies.js [ Failure Pass ]\n\n# Imported WPT crashes on desktop platforms\ncrbug.com/1318456 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319320 rootscroller/root-scroller-apply-filter-to-parent.html [ Failure Pass ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319808 virtual/wbn-from-network/external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Skip ]\n\n# Sheriff 2022-04-26\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1288741 external/wpt/scroll-to-text-fragment/find-range-from-text-directive.html [ Pass Timeout ]\n\n# Sheriff 2022-04-28\ncrbug.com/1289759 [ Linux ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\ncrbug.com/1289759 [ Win ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\n\ncrbug.com/1137003 fast/dom/timer-throttling-background-page-near-alignment-interval.html [ Failure Pass ]\n\n# Sheriff 2022-04-29\ncrbug.com/1321243 accessibility/aom-reparenting-crash.html [ Pass Timeout ]\n\n# Sheriff 2022-05-02\ncrbug.com/1321293 fast/forms/calendar-picker/week-picker-choose-default-value-after-set-value.html [ Failure Pass ]\n\n# Test expectations for Win11\ncrbug.com/1295890 [ Win11 ] fast/dom/HTMLScriptElement/script-sync-load-failure.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/workers/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/security/document-domain-canonicalizes-iframe.html [ Skip Timeout ]\n\ncrbug.com/1322405 external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\ncrbug.com/1322405 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-05-06\ncrbug.com/1322072 external/wpt/fetch/content-type/script.window.html [ Failure Pass ]\ncrbug.com/1286883 [ Mac ] fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-05-11\ncrbug.com/1324428 fast/webgl/canvas-toDataURL-crash.html [ Crash Pass ]\n\n# Throttling a hidden-cross origin frame may stall animations.\ncrbug.com/1323246 external/wpt/web-animations/timing-model/timelines/sibling-iframe-timeline.html [ Failure Pass ]\n\n# Sheriff 2022-05-16\ncrbug.com/1325858 virtual/wasm-code-caching/http/tests/wasm/caching/code-cache.html [ Skip ]\n\n# introduce blink_wpt_tests\ncrbug.com/1299834 [ Win ] wpt_internal/html/interaction/focus/the-autofocus-attribute/object-fallback.html [ Timeout ]\ncrbug.com/1299834 external/wpt/css/css-pseudo/first-letter-with-quote.html [ Failure ]\n\n# Remove from virtual tests when ReduceAcceptLanguage is turned on by default.\ncrbug.com/1307484 http/tests/serviceworker/reduce-accept-language/fetch-event-headers.html [ Skip ]\ncrbug.com/1307484 navigator_language/reduce_accept_language/* [ Skip ]\n\n# Sheriff 2022-05-20\ncrbug.com/1291841 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment-security.sub.html [ Pass Timeout ]\ncrbug.com/1327764 inspector-protocol/overlay/overlay-persistent-overlays.js [ Failure Pass ]\n\n# Sheriff 2022-05-26\ncrbug.com/1329596 virtual/gpu-rasterization/images/jpeg-with-non-interleaved-dc-channels.html [ Failure Pass ]\n\n# Sheriff 2022-05-30\ncrbug.com/1330238 [ Mac ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\n\n# Sheriff 2022-05-31\ncrbug.com/1330555 external/wpt/service-workers/service-worker/resource-timing-fetch-variants.https.html [ Failure Pass ]\n\n# fast/canvas/OffscreenCanvas-2d-drawImage.html\ncrbug.com/1273409 [ Mac11 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Mac11-arm64 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Linux ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Win10.20h2 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\n\n# Flaky on multiple platforms\ncrbug.com/1277696 fast/loader/reload-zero-byte-plugin.html [ Failure Pass ]\n\n# Flaky on Windows\ncrbug.com/1316343 [ Win ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\n\n# Manual test fails when run under automation due to lack of pop-up blocking. https://github.com/web-platform-tests/wpt/issues/3867\ncrbug.com/1337125 external/wpt/window-placement/fullscreen-companion-window-manual.tentative.https.html [ Failure ]\n\n# Temporarily disable test to merge 'reveal' button change to adorner\ncrbug.com/1066772 http/tests/devtools/elements/shadow/shadow-slot-assignment.js [ Skip ]\n\n# Flaky on multiple platforms\ncrbug.com/1338536 http/tests/devtools/oopif/oopif-elements-nesting.js [ Failure Pass ]\n\n# Tests that compare a float color to an integer color can suffer off-by-one errors\n# There is no mechanism for fuzzing reference tests outside of WPT and tests that require internals cannot be in WPT\n# When the scrollbarOverlay is moved to float color these can be re-enabled\ncrbug.com/1308932 compositing/overflow/reparented-overlay-scrollbars-should-respect-ancestor-clip.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/reparented-unclipped-overlay-scrollbars-with-offset-from-renderer.html [ Failure ]\ncrbug.com/1308932 compositing/squashing/squashing-inside-perspective-with-reparented-scrolling.html [ Failure ]\ncrbug.com/1308932 fast/scrolling/overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbar-over-child-layer-nested-4.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/non-reparented-overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/auto-scrollbar-fades-out.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbars-within-overflow-scroll.html [ Failure ]\n\n# Sheriff 2022-06-24\ncrbug.com/1339211 [ Mac ] external/wpt/css/css-text-decor/text-decoration-thickness-fixed.html [ Failure Pass ]\ncrbug.com/1339214 [ Mac ] external/wpt/webaudio/the-audio-api/the-convolvernode-interface/realtime-conv.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/the-img-element/invisible-image.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] virtual/threaded/external/wpt/requestidlecallback/deadline-max-rAF-dynamic.html [ Failure Pass ]\ncrbug.com/webrtc/14228 external/wpt/webrtc/protocol/h264-profile-levels.https.html [ Failure Pass ]\n\n[ Debug ] external/wpt/scroll-animations/scroll-timelines/set-current-time-before-play.html [ Skip ]\n\nexternal/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-networkState.html [ Skip ]\n\n# Sheriff 2022-06-29\ncrbug.com/1340421 [ Mac10.15 ] virtual/gpu-rasterization/images/color-profile-svg-foreign-object.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/image-object-in-canvas.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/quadraticCurveTo.xml [ Skip ]\n\ncrbug.com/1340716 [ Linux ] accessibility/notification-listeners.html [ Skip ]\n\n# Sheriff 2022-06-30\ncrbug.com/1340781 fullscreen/full-screen-table-section.html [ Skip ]\n\n# Sheriff 2022-07-05\ncrbug.com/1340763 external/wpt/pointerevents/pointerevent_capture_mouse.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/with-ports/021.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/without-ports/021.html [ Failure Pass ]\n\n# Sheriff 2022-07-07\ncrbug.com/1339538 [ Mac ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Linux ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Win10.20h2 ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1097040 media/controls/overflow-menu-always-visible.html [ Failure Pass ]\ncrbug.com/1342526 external/wpt/dom/events/non-cancelable-when-passive/non-passive-wheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-08\ncrbug.com/1180274 virtual/plz-dedicated-worker/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2022-07-12\ncrbug.com/1343674 [ Linux ] editing/deleting/460938.html [ Failure Pass ]\ncrbug.com/1343664 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-document.html [ Failure Pass ]\n\n# Disable test to land a MSE change. Spec change (MSE PR#306) is still pending,\n# and once landed, this line can be removed.\ncrbug.com/878133 external/wpt/media-source/idlharness.window.html [ Failure Pass ]\n\n# Tests that are exercising the tentative feature COOP: restrict-properties.\n# These are tests which are implemented before the feature is complete and\n# flakily crash.\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?1-2 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?3-4 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?5-6 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?7-8 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?9-last [ Crash Failure ]\n\n# Sheriff 2022-07-13\ncrbug.com/1204176 [ Linux ] fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1344175 [ Mac12 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-root.html [ Failure Pass ]\n\n# Sheriff 2022-07-15\ncrbug.com/1344652 [ Mac ] external/wpt/webmessaging/with-ports/020.html [ Failure Pass ]\ncrbug.com/1344771 virtual/force-defer-script/external/wpt/html/semantics/scripting-1/the-script-element/defer-script/document-write.html [ Failure Pass ]\n\n# Sheriff 2022-07-18\ncrbug.com/1345192 accessibility/aria-combo-box-with-delay-add.html [ Skip ]\ncrbug.com/1345235 external/wpt/content-security-policy/style-src/stylehash-basic-blocked.sub.html [ Skip ]\ncrbug.com/1334674 [ Mac11 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2022-07-21\ncrbug.com/1346158 crbug.com/1346158 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-window.html [ Failure Pass ]\n\n# Sheriff 2022-07-25\ncrbug.com/1343935 [ Mac10.15 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-26\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-links.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-not-propagated-by-out-of-flow.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style.html [ Skip ]\n\n# Sheriff 2022-07-28\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1348118 [ Linux ] virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# Failure on all platforms was added before, see crbug.com/1306770\ncrbug.com/1348118 http/tests/inspector-protocol/network/interception-download.js [ Failure Pass Timeout ]\ncrbug.com/1348118 [ Linux ] virtual/first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# See crbug.com/1344277 for Crash and Failure\ncrbug.com/1348118 [ Linux ] wpt_internal/webxr/ar/ar_light_estimation.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-07-29 - Flaky failure.\ncrbug.com/1347675 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/fragment-navigation.https.html [ Pass Timeout ]\n\n# Offscreen GPU canvas test flaky\ncrbug.com/1286883 [ Linux ] virtual/gpu/fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-08-01\n# TODO(crbug.com/1225773): Re-enable this test\ncrbug.com/1225773 [ Linux ] external/wpt/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-event-during-parse.html [ Skip ]\n\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1218100 [ Linux ] external/wpt/IndexedDB/idb-partitioned-coverage.tentative.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-08-03\ncrbug.com/1349910 [ Mac ] external/wpt/html/semantics/popups/popup-hover-hide.tentative.html [ Failure Pass ]\n\n# Sheriff 2022-08-06\ncrbug.com/1350336 [ Mac ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure Pass ]\ncrbug.com/1350337 [ Linux ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/1350341 [ Linux ] virtual/threaded-no-composited-antialiasing/animations/direction-and-fill/fill-mode-missing-from-to-keyframes.html [ Failure Pass ]\n\n# These seem to consistently fail with disabling code cache.\ncrbug.com/1351903 http/tests/devtools/network/font-face.js [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-ad-fixed-position.html [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-image-ad-fixed-position.html [ Failure Pass ]\n\n# Sheriff 2022-08-11\n# Most likely a forced style/layout update from accessibiity while we are\n# render blocking, which should not happen.\ncrbug.com/1351811 external/wpt/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html [ Failure Pass ]\n\n# Flakes on all platforms.\ncrbug.com/1310202 [ Fuchsia ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Linux ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Mac ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Win ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-08-12\ncrbug.com/1352248 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-non-ad-followed-by-ad.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/cross-origin-opener-policy/coop-sandbox-redirects-cuts-opener.https.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/interaction/focus/chrome-object-tab-focus-bug.html [ Failure Pass ]\ncrbug.com/1352566 [ Mac ] external/wpt/html/browsers/browsing-the-web/history-traversal/event-order/before-load-hash-twice.html [ Failure Pass ]\ncrbug.com/1352607 external/wpt/css/css-transitions/transition-base-response-002.html [ Failure Pass ]\n\n# Sheriff 2022-08-17\ncrbug.com/1340167 fast/loader/iframe-navigation-stealing-focus.html [ Pass Timeout ]\n\n# Sheriff 2022-08-18\ncrbug.com/1354013 virtual/threaded-no-composited-antialiasing/animations/sample-on-last-keyframe.html [ Skip ]\n\n# Sheriff 2022-08-19\ncrbug.com/1354433 [ Mac ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\ncrbug.com/1354433 [ Linux ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\n\n# Failures with FractionalScrollOffsets disabled for web tests by default.\ncrbug.com/1358383 fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Failure ]\ncrbug.com/1358383 [ Mac ] fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure ]\ncrbug.com/1358383 fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure ]\ncrbug.com/1358383 virtual/compositor_threaded_scrollbar_scrolling/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\ncrbug.com/1358383 virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\n[ Mac ] virtual/percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/fractional-scroll-offsets/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\n\n# Sheriff 2022-08-24\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\n\n# Sheriff 2022-08-26\ncrbug.com/1356118 [ Mac ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\n\n# Sheriff 2022-08-30\ncrbug.com/1357621 [ Linux ] external/wpt/webauthn/getcredential-abort.https.html [ Failure Pass Timeout ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default.html [ Failure Pass ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-writing-mode-rl.html [ Failure Pass ]\n\ncrbug.com/1358051 external/wpt/longtask-timing/containerTypes.html [ Failure Pass ]\n\n# TODO(crbug.com/1358147): Re-enable this test\nvirtual/plz-dedicated-worker/external/wpt/resource-timing/no-entries-for-cross-origin-css-fetched-memory-cache.sub.html [ Skip ]\n\n# Disable step failure trigger flaky tests\ncrbug.com/1351571 [ Mac12-arm64 ] http/tests/devtools/persistence/automapping-bind-committed-network-sourcecode.js [ Failure Pass Timeout ]\ncrbug.com/1358333 [ Mac10.15 ] external/wpt/webmessaging/event.origin.sub.htm [ Failure Pass ]\n\n# Sheriff 2022-08-31\ncrbug.com/1306304 [ Mac ] plugins/multiple-plugins.html [ Failure Pass ]\n\n# Sheriff 2022-09-01\nvirtual/gpu/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Skip ]\n\n# Sheriff 2022-09-06\ncrbug.com/1358298 external/wpt/html/cross-origin-embedder-policy/require-corp.https.html [ Failure Pass ]\n\n# Disable more gpu test on linux dbg\ncrbug.com/1356664 [ Debug Linux ] virtual/no-alloc-direct-call/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure Pass ]\n\n# Disable scrolling flake on win\ncrbug.com/1359541 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-div-custom-scrollbar.html [ Failure Pass Timeout ]\n\n# Disable devtool flake on Mac11,12,10.15\ncrbug.com/1363259 [ Mac11 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac12 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac10.15 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\n\n# Disable media security policy test on Linux (dbg, ASAN) and Mac12 (dbg)\ncrbug.com/1349180 [ Linux ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\ncrbug.com/1349180 [ Debug Mac12 ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\n\n# Disable flakes on mac builders\ncrbug.com/1363708 [ Mac12 ] http/tests/media/gc-while-network-loading.html [ Pass Timeout ]\ncrbug.com/1363683 [ Mac12 ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac10.15 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac11 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\n\n# Disable DOM web flake on debug linux and mac\ncrbug.com/1353578 [ Debug Linux ] fast/dom/gc-image-element-2.html [ Failure Pass ]\ncrbug.com/1353578 [ Debug Mac ] fast/dom/gc-image-element-2.html [ Failure Pass ]\n\n# Sheriff 2022-09-07\ncrbug.com/1360691 [ Debug Linux ] fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure ]\n\n# Sheriff 2022-09-09\ncrbug.com/1361956 [ Linux ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Pass Timeout ]\n"
+    "third_party/blink/web_tests/TestExpectations": "# tags: [ Fuchsia Linux Mac Mac10.13 Mac10.14 Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Win Win10.20h2 Win11 ]\n# tags: [ Release Debug ]\n# results: [ Timeout Crash Pass Failure Skip ]\n\n# This is the main failure suppression file for Blink LayoutTests.\n# Further documentation:\n# https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_test_expectations.md\n\n# Intentional failures to test the layout test system.\nharness-tests/crash.html [ Crash ]\nharness-tests/timeout.html [ Timeout ]\nfast/harness/sample-fail-mismatch-reftest.html [ Failure ]\n\n# Expected to fail.\nexternal/wpt/infrastructure/reftest/legacy/reftest_and_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/legacy/reftest_cycle_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-1.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-4.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-5.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-6.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-7.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_mismatch_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-1.html [ Failure ]\naccessibility/slot-poison.html [ Failure ]\n\n# Expected to time out.\nexternal/wpt/infrastructure/expected-fail/timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_ref_timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_timeout.html [ Timeout ]\n\n# We don't support extracting fuzzy information from .ini files, which these\n# WPT infrastructure tests rely on.\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/reftest_fuzzy_chain_ini.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/fuzzy-ref-2.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_full.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_ref_only.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_short.html [ Failure ]\n\n# WPT HTTP/2 is not fully supported by run_web_tests.\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=https [ Failure ]\n\n# The following tests pass or fail depending on the underlying protocol (HTTP/1.1 vs HTTP/2).\n# The results of failures could be also different depending on the underlying protocol.\ncrbug.com/1048761 external/wpt/websockets/constructor/002.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-connecting.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-nested.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/readyState/003.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/unload-a-document/002.html?wss [ Failure Pass ]\n\n# Tests are flaky after a WPT import\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2 [ Failure Pass ]\n# Flaking on WebKit Linux MSAN\ncrbug.com/1207373 [ Linux ] external/wpt/uievents/order-of-events/mouse-events/mousemove-across.html [ Failure Pass ]\ncrbug.com/1339285 [ Linux ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Win ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Mac ] fast/loader/iframe-window-open-stealing-focus.html [ Pass Timeout ]\n\n# WPT Test harness doesn't deal with finding an about:blank ref test\ncrbug.com/1066130 external/wpt/infrastructure/assumptions/blank.html [ Failure ]\n\ncrbug.com/807686 crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]\n\n# The following tests need to remove the assumption that user activation is\n# available in child/sibling frames.  This assumption doesn't hold with User\n# Activation v2 (UAv2).\ncrbug.com/906791 external/wpt/fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html [ Timeout ]\n\n# These two are left over from crbug.com/881040, I rebaselined them twice and\n# they continue to fail.\ncrbug.com/881040 media/controls/lazy-loaded-style.html [ Failure Pass ]\n\n# With --enable-display-compositor-pixel-dump enabled by default, these three\n# tests fail. See crbug.com/887140 for more info.\ncrbug.com/887140 virtual/hdr/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/887140 virtual/hdr/color-profile-video.html [ Failure ]\ncrbug.com/887140 virtual/hdr/video-canvas-alpha.html [ Failure ]\n\n# Tested by paint/background/root-element-background-transparency.html for now.\nexternal/wpt/css/compositing/root-element-background-transparency.html [ Failure ]\n\n# ====== Synchronous, budgeted HTML parser tests from here ========================\n# See crbug.com/1254921 for details.\n# These tests either started failing outright, or became flaky, when the new HTML\n# parser was enabled. All of these are bugs/issues with the test itself.\n\n# Extra line info appears in the output in some cases.\ncrbug.com/1254932 http/tests/preload/meta-csp.html [ Failure ]\n\n# Extra box in the output:\ncrbug.com/1254933 css3/filters/filterRegions.html [ Failure ]\n\n# Script preloaded: No\ncrbug.com/1254940 http/tests/security/contentSecurityPolicy/nonces/scriptnonce-redirect.html [ Failure ]\n\n# Two paint failures:\ncrbug.com/1254943 paint/invalidation/overflow/resize-child-within-overflow.html [ Failure ]\ncrbug.com/1254943 fast/events/hit-test-counts.html [ Failure ]\n\n# Image isn't present:\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure Pass ]\n\n# Fails flakily or times out\ncrbug.com/1269536 [ Mac11 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\ncrbug.com/1269536 [ Mac12 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\n\n# Unknown media state flakiness (likely due to layout occuring earlier than expected):\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-candidate-insert-before.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-audio-constructor.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-from-document-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-src.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src.html [ Failure Pass ]\n\n# Very slow (~2 minutes) when DCHECKs are enabled, due to huge number of loop iterations.\n# The -3 variant additionally exposes a bug, but even once that's fixed the test is too slow.\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-3.html [ Failure Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-3.html [ Skip Timeout ]\n\n# ====== Synchronous, budgeted HTML parser tests to here ========================\n\n# ====== Timed HTML parser budget tests from here ========================\n# See crbug.com/1342718 for details.\n# These tests either started failing outright, or became flaky, when the HTML\n# parser switched to using a time based budget instead of a token based budget.\n# All of these are bugs/issues with the test itself.\n\ncrbug.com/1341693 [ Linux ] external/wpt/dom/nodes/MutationObserver-document.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-play.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html [ Failure Pass ]\ncrbug.com/1339293 external/wpt/content-security-policy/media-src/media-src-7_1_2.sub.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/content-security-policy/media-src/media-src-blocked.sub.html [ Failure Pass Timeout ]\ncrbug.com/1339293 [ Linux ] fast/frames/empty-frame-src.html [ Failure Pass ]\ncrbug.com/1339293 crbug.com/1347321 fast/frames/frame-scrolling-attribute.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/controls/rotated-video-has-right-panel-width.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/media-controls-overflow-hidden.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/scripting-1/the-script-element/execution-timing/029.html [ Failure Pass ]\ncrbug.com/1351106 [ Linux ] fast/frames/invalid-cols-rows-value.html [ Failure Pass ]\n\n# ====== Timed HTML parser budget tests to here ========================\n\ncrbug.com/1197502 [ Win ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass ]\n\n# ====== Site Isolation failures from here ======\n# See also third_party/blink/web_tests/virtual/not-site-per-process/README.md\n# Tests temporarily disabled with Site Isolation - uninvestigated bugs:\n# TODO(lukasza, alexmos): Burn down this list.\ncrbug.com/949003 http/tests/printing/cross-site-frame-scrolled.html [ Failure Pass ]\ncrbug.com/949003 http/tests/printing/cross-site-frame.html [ Failure Pass ]\n# ====== Site Isolation failures until here ======\n\n# ====== Oilpan-only failures from here ======\n# Most of these actually cause the tests to report success, rather than\n# failure. Expected outputs will be adjusted for the better once Oilpan\n# has been well and truly enabled always.\n# ====== Oilpan-only failures until here ======\n\n# ====== Paint team owned tests from here ======\n# The paint team tracks and triages its test failures, and keeping them colocated\n# makes tracking much easier.\n# Covered directories are:\n#  compositing except compositing/animations\n#  hittesting\n#  images, css3/images,\n#  paint\n#  svg\n#  canvas, fast/canvas\n#  transforms\n#  display-lock\n#  view-transition\n# Some additional bugs that are caused by painting problems are also within this section.\n\n# The tests happened to pass with two bugs canceled each other. Now they fail\n# with the first bug fixed. Will be fixed when the second bug is fixed (crrev.com/c/3752748).\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor-iframe.html [ Failure ]\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor.html [ Failure ]\n\n# These tests block fixes done in V8. The tests run on the V8 bots as well.\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.worker.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.worker.html [ Failure Pass ]\n\n\n# --- Skia roll test suppressions\n\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed.html [ Failure Pass ]\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed2.html [ Failure Pass ]\ncrbug.com/1354678 fast/css/transformed-mask.html [ Failure Pass ]\ncrbug.com/1354678 paint/invalidation/reflection/reflection-with-rotation.html [ Failure Pass ]\n\n# --- END Skia roll test suppresions\n\n\n# Sheriff on 2020-09-03\ncrbug.com/1124352 media/picture-in-picture/clear-after-request.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/controls/picture-in-picture-button.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/picture-in-picture-interstitial.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/css-selector.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/exit-picture-in-picture.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/picture-in-picture-element.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/shadow-dom.html [ Crash Pass ]\n\n# These tests require portals, and some require cross-origin portals.\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1093466 external/wpt/fetch/metadata/portal.https.sub.html [ Skip ]\ncrbug.com/1093466 external/wpt/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/devtools/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/inspector-protocol/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/portals/* [ Skip ]\ncrbug.com/1093466 wpt_internal/portals/* [ Skip ]\ncrbug.com/1093466 virtual/portals/external/wpt/fetch/metadata/portal.https.sub.html [ Pass ]\ncrbug.com/1093466 virtual/portals/external/wpt/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/devtools/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/inspector-protocol/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/wpt_internal/portals/* [ Pass ]\n\n# These tests require fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1123606 wpt_internal/fenced_frame/* [ Skip ]\ncrbug.com/1123606 http/tests/fenced_frame/* [ Skip ]\ncrbug.com/1123606 virtual/fenced-frame-shadow-dom/* [ Pass ]\ncrbug.com/1123606 virtual/fenced-frame-mparch/* [ Pass ]\n\n# These fail due to subtle anti-aliasing differences cause by the fact that\n# <canvas> renders via IOSurface and OffscreenCanvas does not.\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-gradients-in-worker.html [ Failure ]\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-paths-in-worker.html [ Failure ]\n\n# Offscreen canvas tests that are flaky because sometimes the image is not rendered in time\n# See crbug.com/1315650\ncrbug.com/1322089 virtual/gpu/fast/canvas/OffscreenCanvas-MessageChannel-transfer.html [ Failure Pass ]\n\n# These tests require shared-storage and fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1218540 wpt_internal/shared_storage/* [ Skip ]\ncrbug.com/1218540 external/wpt/shared-storage/* [ Skip ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-mparch/* [ Pass ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-shadow-dom/* [ Pass ]\n\n# These tests require the experimental prerender feature.\n# See https://crbug.com/1126305.\ncrbug.com/1126305 external/wpt/speculation-rules/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/* [ Pass ]\ncrbug.com/1126305 wpt_internal/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/wpt_internal/prerender/* [ Pass ]\ncrbug.com/1126305 http/tests/inspector-protocol/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/http/tests/inspector-protocol/prerender/* [ Pass ]\n# These tests are tentatively disabled.\ncrbug.com/1302831 virtual/prerender/external/wpt/speculation-rules/prerender/service-workers.https.html [ Failure Skip Timeout ]\ncrbug.com/1302831 virtual/prerender/http/tests/inspector-protocol/prerender/prerender-ua-override.js [ Skip ]\ncrbug.com/1302831 virtual/prerender/wpt_internal/prerender/restriction-web-auth.https.html [ Skip ]\ncrbug.com/1302831 [ Mac10.14 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\ncrbug.com/1302831 [ Win10.20h2 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\n\n# These tests require the experimental speculative prefetch feature, and requires extra switches to enable content implementation of speculation rules prefetch.\n# This expectation and the virtual suite can be removed once that is enabled by default.\ncrbug.com/1343590 external/wpt/speculation-rules/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/* [ Pass ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/redirect-url.https.html [ Failure ]\ncrbug.com/1343590 http/tests/inspector-protocol/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/http/tests/inspector-protocol/prefetch/* [ Pass ]\n\n# This is not yet implemented. We cannot use -expected.txt since the output contains UUID URLs that change each run.\ncrbug.com/1355146 virtual/prefetch/external/wpt/speculation-rules/prefetch/referrer-policy.https.html [ Skip ]\n\n# These tests are flaky with BFCache, which is enabled by default.\ncrbug.com/1311546 http/tests/test-runner/back-forward.html [ Failure Pass ]\n\n# These tests require LazyEmbed, which is currently disabled by default.\ncrbug.com/1247131 virtual/automatic-lazy-frame-loading/wpt_internal/lazyembed/* [ Pass ]\ncrbug.com/1247131 wpt_internal/lazyembed/* [ Skip ]\n\n# Ref test with very minor differences. We need fuzzy matching for our ref tests,\n# or upstream this to WPT.\ncrbug.com/1185506 svg/text/textpath-pattern.svg [ Failure Pass ]\n\ncrbug.com/1225630 fast/multicol/infinite-height-causing-fractional-row-height-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/infinitely-tall-content-in-outer-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/insane-column-count-and-padding-nested-crash.html [ Skip ]\ncrbug.com/807395 fast/multicol/mixed-opacity-test.html [ Failure ]\ncrbug.com/1225630 fast/multicol/nested-very-tall-inside-short-crash.html [ Skip ]\n\n# Document transition tests\ncrbug.com/1276999 view-transition/* [ Skip ]\ncrbug.com/1316157 inspector-protocol/css/css-get-styles-for-view-transition.js [ Skip ]\ncrbug.com/1276999 wpt_internal/view-transition/* [ Skip ]\ncrbug.com/1276999 virtual/view-transition/* [ Pass ]\ncrbug.com/1276999 virtual/view-transition-wide-gamut/* [ Pass ]\n\ncrbug.com/1351556 virtual/view-transition-wide-gamut/wpt_internal/view-transition/commit-timeout-crash.html [ Failure Timeout ]\ncrbug.com/1351556 virtual/view-transition/view-transition/capture-callback-exception.html [ Failure ]\ncrbug.com/1351556 virtual/view-transition-wide-gamut/view-transition/capture-callback-exception.html [ Failure ]\n\n########## Ref tests can't be rebaselined ##########\ncrbug.com/619103 paint/invalidation/background/background-resize-width.html [ Failure Pass ]\n\ncrbug.com/784956 fast/history/frameset-repeated-name.html [ Failure Pass ]\n\n# These are both related to images not painting as expected, and are primarily CQ hidden flakes\ncrbug.com/1284609 images/image-load-reset-on-new-base.html [ Failure Pass ]\ncrbug.com/1271092 paint/invalidation/scroll/fixed-img-src-change-after-scroll.html [ Failure Pass ]\n\n########## Genuinely flaky ##########\ncrbug.com/624233 virtual/gpu-rasterization/images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/757605 virtual/gpu-rasterization/images/jpeg-yuv-progressive-image.html [ Failure Pass ]\n\n########## Bugs to fix ##########\n# This is a missing event and increasing the timeout or using run-after-layout-and-paint doesn't\n# seem to fix it.\ncrbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ Failure ]\n\ncrbug.com/845267 [ Mac ] http/tests/inspector-protocol/page/page-lifecycleEvents.js [ Failure Pass ]\ncrbug.com/1046784 http/tests/inspector-protocol/page/page-events-associated-isolation.js [ Failure Pass ]\n\n# Service Worker registration.update() Network Requests require more instrumentation\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\n\n# Looks like a failure to get a paint on time. Test could be changed to use runAfterLayoutAndPaint\n# instead of a timeout, which may fix things.\ncrbug.com/713049 images/color-profile-reflection.html [ Failure Pass ]\ncrbug.com/713049 [ Mac ] virtual/gpu-rasterization/images/color-profile-reflection.html [ Failure Pass Timeout ]\n\n# This test was attributed to site isolation but times out with or without it. Broken test?\ncrbug.com/1050826 external/wpt/mixed-content/gen/top.http-rp/opt-in/object-tag.https.html [ Skip Timeout ]\n\ncrbug.com/1098369 fast/canvas/OffscreenCanvas-copyImage.html [ Failure Pass ]\n\ncrbug.com/1106590 [ Mac ] virtual/gpu/fast/canvas/canvas-path-non-invertible-transform.html [ Crash Pass ]\n\ncrbug.com/1237275 fast/canvas/layers-lonebeginlayer.html [ Failure Pass ]\ncrbug.com/1237275 fast/canvas/layers-unmatched-beginlayer.html [ Failure Pass ]\n\n# Assorted WPT canvas tests failing\ncrbug.com/1093709 external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.resize.html [ Failure Pass ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.html [ Failure ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.shadow.html [ Failure ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.small.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.small.worker.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.NaN.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.negative.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.zero.html [ Pass Timeout ]\ncrbug.com/1170337 [ Mac10.13 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.zero.worker.html [ Skip Timeout ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html [ Failure ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html [ Failure ]\n\n# Off by one pixel error on ref test\ncrbug.com/1259367 [ Mac ] printing/offscreencanvas-webgl-printing.html [ Failure ]\n\n# These are testing deprecated features: https://github.com/web-platform-tests/wpt/issues/35662\nexternal/wpt/editing/run/inserttext.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/inserttext.html?2001-last [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1-1000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?2001-last [ Failure ]\nexternal/wpt/editing/run/insertlinebreak.html [ Failure ]\n\n# This test depends on synchronous focus() which does not exist (anymore?).\ncrbug.com/1074482 external/wpt/html/interaction/focus/the-autofocus-attribute/update-the-rendering.html [ Failure ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 [ Win ] external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1105278 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1104125 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\n\n# This test has a bug in it that prevents it from being able to deal with order\n# differences it claims to support.\ncrbug.com/1076129 external/wpt/service-workers/service-worker/clients-matchall-frozen.https.html [ Failure Pass ]\n\n# No support for un-prefixed background-clip: text or fill-color on text.\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-multi-line.html [ Failure ]\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-flex.html [ Failure ]\n\n# Flakily timing out or failing.\n# TODO(ccameron): Investigate this.\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\n\n# Flaky virtual/threaded-prefer-compositing tests\ncrbug.com/1309533 [ Win ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/idlharness.html [ Failure ]\ncrbug.com/1180479 [ Mac ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/scrollIntoView-smooth.html [ Failure Pass Timeout ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-added.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-correctness.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/mousewheel-scroll-interrupted.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Skip ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass Timeout ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snap-scrolls-visual-viewport.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-scrollbar-scrolling-thumb.html [ Failure Pass ]\ncrbug.com/1205673 [ Linux ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1205673 [ Win ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling.html [ Failure Pass ]\ncrbug.com/936891 virtual/threaded-prefer-compositing/fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Pass ]\ncrbug.com/1049599 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass Skip Timeout ]\ncrbug.com/1193920 virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass Timeout ]\ncrbug.com/1335172 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/1335172 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 [ Debug Mac12 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 virtual/threaded-prefer-compositing/fast/scrolling/overflow-scrollability.html [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/same-page-navigate.html [ Failure Pass ]\ncrbug.com/1279758 [ Win10.20h2 ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1279758 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1058244 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass Timeout ]\ncrbug.com/1058244 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]\n\ncrbug.com/915926 fast/events/touch/multi-touch-user-gesture.html [ Failure Pass ]\n\ncrbug.com/736052 [ Mac ] compositing/overflow/composited-scroll-with-fractional-translation.html [ Failure Pass ]\ncrbug.com/1303091 [ Linux ] compositing/overflow/paint-neg-z-order-descendants-into-scrolling-contents-layer.html [ Failure Pass ]\n\ncrbug.com/1303030 [ Linux ] paint/invalidation/forms/range-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# New OffscreenCanvas Tests that are breaking LayoutTest\n\ncrbug.com/980969 http/tests/input/discard-events-to-unstable-iframe.html [ Failure Pass ]\n\ncrbug.com/1086591 external/wpt/css/mediaqueries/aspect-ratio-004.html [ Failure ]\ncrbug.com/1086591 external/wpt/css/mediaqueries/device-aspect-ratio-002.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-005.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-006.html [ Failure ]\ncrbug.com/962417 external/wpt/css/mediaqueries/mq-negative-range-001.html [ Failure ]\ncrbug.com/1343368 external/wpt/css/mediaqueries/viewport-script-dynamic.html [ Failure ]\ncrbug.com/1345247 external/wpt/css/mediaqueries/prefers-color-scheme-svg-image.html [ Failure ]\n\ncrbug.com/815111 external/wpt/css/css-fill-stroke/paint-order-001.tentative.html [ Failure ]\n\ncrbug.com/1007134 external/wpt/intersection-observer/v2/delay-test.html [ Failure Pass ]\ncrbug.com/1004547 external/wpt/intersection-observer/cross-origin-iframe.sub.html [ Failure Pass ]\ncrbug.com/1007229 external/wpt/intersection-observer/same-origin-grand-child-iframe.sub.html [ Failure Pass ]\n\n# These fail when device_scale_factor is changed, but only for anti-aliasing:\ncrbug.com/968791 [ Mac ] virtual/scalefactor200/css3/filters/effect-blur-hw.html [ Failure Pass ]\ncrbug.com/968791 virtual/scalefactor200/css3/filters/filterRegions.html [ Failure ]\n\n# These appear to be actually incorrect at device_scale_factor 2.0:\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-002.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure ]\ncrbug.com/968791 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-004.html [ Failure ]\ncrbug.com/968791 [ Debug Mac11 ] virtual/scalefactor200/external/wpt/css/filter-effects/filters-test-brightness-003.html [ Failure ]\n\ncrbug.com/916825 external/wpt/css/filter-effects/filter-subregion-01.html [ Failure ]\n\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-combined-001.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-blur.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\n\ncrbug.com/1362524 external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\ncrbug.com/1362524 virtual/scalefactor200/external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\n\n# Could be addressed with fuzzy diff.\ncrbug.com/910537 external/wpt/svg/painting/marker-006.svg [ Failure ]\ncrbug.com/910537 external/wpt/svg/painting/marker-005.svg [ Failure ]\n\n# We don't yet implement context-fill and context-stroke\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-001.svg [ Failure ]\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-002.svg [ Failure ]\n\n# Unprefixed 'mask' ('mask-image', 'mask-border') support not yet implemented.\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-clip-exclude.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-local-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-remote-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image-hash.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-005.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-008.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-007.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-006.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-007.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-009.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-010.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-011.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-012.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-polygon-013.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-fillBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-geometryBox-2.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-marginBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3f.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3g.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-to-mask-type.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1e.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-5.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-6.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-7.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-border.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-padding.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-cover.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent-stretch.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent.html [ Failure ]\n\n# CSS clip-path: shape() not implemented\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/animations/clip-path-interpolation-shape.html [ Failure ]\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/parsing/clip-path-shape-parsing.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002-units.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-003.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-004.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-002.html [ Failure ]\n\n# CSS cascade layers\ncrbug.com/1277637 external/wpt/css/css-cascade/layer-stylesheet-sharing.html [ Failure ]\n\n# Fails, at a minimum, due to lack of support for CSS mask property in html elements\ncrbug.com/432153 external/wpt/svg/painting/reftests/display-none-mask.html [ Skip ]\n\n# WPT SVG Tests failing. Have not been investigated in all cases.\ncrbug.com/1184034 external/wpt/svg/linking/reftests/href-filter-element.html [ Failure ]\ncrbug.com/366559 external/wpt/svg/shapes/reftests/pathlength-003.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-side-001.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-shape-001.svg [ Failure ]\ncrbug.com/803360 external/wpt/svg/path/closepath/segment-completing.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-001.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-201.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-202.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-102.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-002.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-203.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-003.svg [ Failure ]\ncrbug.com/670177 external/wpt/svg/rendering/order/z-index.svg [ Failure ]\ncrbug.com/863355 [ Mac ] external/wpt/svg/shapes/reftests/pathlength-002.svg [ Failure ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-mpath-element.html [ Timeout ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-animate-element.html [ Timeout ]\ncrbug.com/1222395 external/wpt/svg/path/property/mpath.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/struct/reftests/use-inheritance-001.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/linking/reftests/use-descendant-combinator-003.html [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-022.svg [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-023.svg [ Failure ]\n\ncrbug.com/699040 external/wpt/svg/text/reftests/text-xml-space-001.svg [ Failure ]\n\n# WPT backgrounds and borders tests. Note that there are many more in NeverFixTests\n# that should be investigated (see crbug.com/780700)\ncrbug.com/1242416 [ Linux ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/1242416 [ Mac10.14 ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-004.xht [ Failure ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-006.xht [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-008.html [ Failure ]\ncrbug.com/1268426 external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/1268426 virtual/threaded/external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-009.html [ Failure ]\n\n# No emoji flag symbols available in the Windows system emoji font.\ncrbug.com/1272436 [ Win10.20h2 ] external/wpt/css/CSS2/text/bidi-flag-emoji-02.html [ Failure ]\n\n# ==== Regressions introduced by BlinkGenPropertyTrees =====\n# Reflection / mask ordering issue\ncrbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]\n# Incorrect scrollbar invalidation.\ncrbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]\ncrbug.com/887000 [ Mac10.14 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\n\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad-zoom-in-slow.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad.html [ Failure Pass ]\n\ncrbug.com/898394 virtual/android/url-bar/bottom-and-top-fixed-sticks-to-top.html [ Failure Timeout ]\n\ncrbug.com/1024151 http/tests/devtools/tracing/timeline-style/timeline-style-recalc-all-invalidator-types.js [ Failure Pass ]\n\ncrbug.com/1046784 http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Skip ]\n\n# Subpixel rounding differences that are incorrect.\ncrbug.com/997202 compositing/overflow/scaled-overflow.html [ Failure ]\n# Flaky subpixel AA difference (not necessarily incorrect, but flaky)\ncrbug.com/997202 virtual/threaded-no-composited-antialiasing/animations/skew-notsequential-compositor.html [ Failure Pass ]\n# Only one pixel difference (187,187,187) vs (188,188,188) occasionally.\ncrbug.com/1207960 [ Linux ] compositing/perspective-interest-rect.html [ Failure Pass ]\n\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg.html [ Failure ]\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg-clip.html [ Failure ]\n\ncrbug.com/1261905 external/wpt/css/css-transforms/backface-visibility-hidden-child-will-change-transform.html [ Failure ]\ncrbug.com/1261905 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-child-translate.html [ Failure ]\n\n# CompositeAfterPaint remaining failures\n# Outline paints incorrectly with columns. Needs LayoutNGBlockFragmentation.\ncrbug.com/1047358 [ Mac11 ] paint/pagination/composited-paginated-outlined-box.html [ Failure ]\n# Need to force the video to be composited in this case, or change pre-CAP\n# to match CAP behavior.\ncrbug.com/1108972 fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure ]\n# Cross-origin iframe layerization is buggy with empty iframes.\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-masked-pointer-events-mixed-2.sub.html [ Failure ]\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-complex-clip.sub.html [ Failure ]\ncrbug.com/1266900 [ Mac11 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1266900 [ Mac12 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-baseline-005.html [ Failure ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-suppress-baseline-001.html [ Failure ]\n\n# Needs rebaseline on Fuchsia.\ncrbug.com/1267498 [ Fuchsia ] paint/invalidation/svg/animated-svg-as-image-transformed-offscreen.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] transforms/transformed-caret.html [ Failure ]\n\n# WebGPU tests are only run on GPU bots, so they are skipped by default and run\n# separately from other Web Tests.\nexternal/wpt/webgpu/* [ Skip ]\nwpt_internal/webgpu/* [ Skip ]\n\ncrbug.com/829028 [ Mac ] compositing/gestures/gesture-tapHighlight-lines-and-float-in-multicol.html [ Failure ]\n\n# Requires support of the image-resolution CSS property\ncrbug.com/1086473 external/wpt/css/css-images/image-resolution/* [ Skip ]\n\n# Fail due to lack of fuzzy matching on Linux, Win and Mac platforms for WPT. The pixels in the pre-rotated reference\n# images do not exactly match the exif rotated images, probably due to jpeg decoding/encoding issues. Maybe\n# adjusting the image size to a multiple of 8 would fix this (so all jpeg blocks are solid color).\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties-border-radius.html [ Failure ]\ncrbug.com/997202 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio.html [ Failure ]\n\ncrbug.com/1159433 external/wpt/css/css-images/image-orientation/image-orientation-exif-png.html [ Failure ]\n\n# Ref results are wrong on the background and list case, not sure on border result\ncrbug.com/1076121 external/wpt/css/css-images/image-orientation/image-orientation-border-image.html [ Failure ]\n\n# object-fit is not applied for <object>/<embed>.\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-001.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-002.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006o.html [ Failure ]\n\n# Minor rendering difference to the ref image because of filtering or positioning.\n# (Possibly because of the use of 'image-rendering: crisp-edges' in some cases.)\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002p.html [ Failure ]\n\n# The following fails because we don't use the natural aspect ratio when applying\n# object-fit, and the images referenced don't have a natural size.\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003p.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004p.html [ Failure ]\n\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-png.html [ Failure ]\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-svg.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-043.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-044.html [ Failure ]\n\n# Not obviously incorrect (minor pixel differences, likely due to filtering).\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-space-10.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-1.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-2.html [ Failure ]\n\n# Passes with the WPT runner but not the internal one. (???)\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1a.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1b.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1c.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-3.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-4.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-5.html [ Failure ]\n\n# Off-by-one in some components.\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-6.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-7.html [ Failure ]\n\n# Failures due to pointerMove building synthetic events without button information (main thread only).\ncrbug.com/1056778 fast/scrolling/scrollbars/scrollbar-thumb-snapping.html [ Failure ]\n\n# Most of these fail due to subpixel differences, but a couple are real failures.\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-animation.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-border-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/compositing_simple_div.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-simple.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-stacking-context-001.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph-background-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-both-parent-and-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-svg.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-filter.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-script.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-interposed.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html [ Failure ]\ncrbug.com/1044742 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Win ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-text.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-mask.html [ Failure ]\n\ncrbug.com/1271275 external/wpt/css/compositing/background-blending/background-blend-mode-plus-lighter.html [ Failure ]\n\n# Minor pixel differences\ncrbug.com/1056492 external/wpt/svg/painting/reftests/marker-path-001.svg [ Failure ]\n\ncrbug.com/819617 [ Linux ] virtual/text-antialias/descent-clip-in-scaled-page.html [ Failure ]\n\ncrbug.com/1196414 compositing/composited-replaced-subpixel-location.html [ Failure ]\n\n# Triage of WPT css-paint-api tests\ncrbug.com/1299442 external/wpt/css/css-paint-api/custom-property-animation-on-main-thread.https.html [ Failure Pass ]\n\n# Flaky virtual/off-main-thread-css-paint tests. Skipping whole test suite for now.\n# Open issues: 1339051, 1288136, 1286944, 1254382, 1250666, 1233826, 1123886, 1345205, 1299442, 1288136\nvirtual/off-main-thread-css-paint/external/wpt/css/css-paint-api/* [ Skip ]\n\ncrbug.com/1339051 [ Linux ] virtual/off-main-thread-css-paint/http/tests/csspaint/shadow-scale-with-page-zoom.html [ Failure ]\n\n# ====== Paint team owned tests to here ======\n\n# WPT speculative-parsing tests failing\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-alternate-stylesheet.tentative.sub.html [ Crash Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-stylesheet-nomatch-media.tentative.sub.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-alternate-stylesheet.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-disabled.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-nomatch-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-font-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html [ Failure ]\n\ncrbug.com/1142958 external/wpt/layout-instability/absolute-child-shift-with-parent-will-change.html [ Failure ]\n\ncrbug.com/922249 virtual/android/fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure Pass ]\n\n# ====== Layout team owned tests from here ======\n\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-left-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-right-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-left-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-right-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-wrap-bfc-006.xht [ Failure ]\n\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floating-replaced-height-008.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-108.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-109.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-110.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-126.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-127.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-128.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-129.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-130.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-131.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-137.xht [ Skip ]\n\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-006.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-020.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-021.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-022.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-034.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-035.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-036.xht [ Skip ]\n\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-002.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-006.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-005.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-006.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-001.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-002.xht [ Failure ]\n\n#### external/wpt/css/css-sizing\ncrbug.com/1322062 external/wpt/css/css-sizing/aspect-ratio/fieldset-element-001.html [ Failure ]\ncrbug.com/1261306 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/slice-intrinsic-size.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/clone-intrinsic-size.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-038.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-039.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-042.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-043.html [ Failure ]\n\n# This one fails a DCHECK on Chromium infra but passes on wpt.fyi\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/grid-aspect-ratio-040.html [ Crash Pass ]\n\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-001.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-002.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-003.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-004.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-005.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-006.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-007.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-008.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-009.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-010.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-011.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-012.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-013.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-014.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-015.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-016.html [ Failure ]\n\ncrbug.com/1008951 external/wpt/css/css-text-decor/text-decoration-color.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-001.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-002.html [ Failure ]\n\ncrbug.com/936084 external/wpt/css/css-sizing/max-content-input-001.html [ Failure ]\ncrbug.com/918905 external/wpt/css/css-sizing/block-size-with-min-or-max-content-table-1b.html [ Failure Pass ]\n\n#### Unprefix and update the implementation for text-emphasis\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-color-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-007.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-008.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-010.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-012.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-016.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-021.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-filled-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-open-001.xht [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cf.html [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cn.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-shape-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-string-001.xht [ Failure ]\ncrbug.com/1281289 external/wpt/css/css-text/letter-spacing/letter-spacing-211.html [ Failure ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-073-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-072-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-071-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-020-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-076-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-075-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-021-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-022-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-074-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-019-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040-manual.html [ Skip ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001z.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004d.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-002.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-001.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-012c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/decorations-multiple-zorder.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/quirks-decor-noblur.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/standards-decor-noblur.html [ Failure ]\n\n# `text-decoration-skip-ink: all` not implemented yet.\ncrbug.com/1054656 external/wpt/css/css-text-decor/text-decoration-skip-ink-005.html [ Skip ]\n\n# `text-decoration: spelling|grammar-error`\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-grammar-error-001.html [ Failure ]\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-spelling-error-001.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-002.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-dynamic-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-002.optional.html [ Failure ]\n\ncrbug.com/722825 [ Linux ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\ncrbug.com/722825 [ Mac10.14 ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\n\ncrbug.com/846753 [ Mac ] http/tests/media/reload-after-dialog.html [ Failure Pass Timeout ]\n\n### external/wpt/css/css-tables/\ncrbug.com/708345 external/wpt/css/css-tables/height-distribution/extra-height-given-to-all-row-groups-004.html [ Failure ]\ncrbug.com/694374 external/wpt/css/css-tables/anonymous-table-ws-001.html [ Failure ]\ncrbug.com/174167 external/wpt/css/css-tables/visibility-collapse-colspan-003.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-max-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-min-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-size-001.html [ Failure ]\ncrbug.com/910725 external/wpt/css/css-tables/tentative/paint/overflow-hidden-table.html [ Failure ]\n\n# [css-contain]\n\ncrbug.com/880802 external/wpt/css/css-contain/contain-layout-017.html [ Failure ]\ncrbug.com/880802 external/wpt/css/css-contain/contain-paint-021.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-001.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-002.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-003.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-004.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-canvas.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-video.html [ Failure ]\n\n# [css-align]\n\ncrbug.com/722287 crbug.com/886585 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/599828 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-align-content-001.html [ Failure ]\n\n# [css-ui]\n# The `input-security` property not implemented yet.\ncrbug.com/1253732 external/wpt/css/css-ui/input-security-none-sensitive-text-input.html [ Failure ]\n# Layout team disagrees with the spec for this particular test.\ncrbug.com/591099 external/wpt/css/css-ui/text-overflow-015.html [ Failure ]\n# Various issues related to the 'appearance' property:\ncrbug.com/1284269 external/wpt/css/css-ui/compute-kind-widget-fallback-props-revert-001.html [ Failure ]\ncrbug.com/1284270 external/wpt/css/css-ui/compute-kind-widget-no-fallback-props-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-attachment-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-clip-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-image-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-origin-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-position-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-size-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-outset-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-repeat-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-slice-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-source-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-width-001.html [ Failure ]\n\n# [css-flexbox]\n\ncrbug.com/807497 external/wpt/css/css-flexbox/anonymous-flex-item-005.html [ Failure ]\ncrbug.com/1155036 external/wpt/css/css-flexbox/contain-size-layout-abspos-flex-container-crash.html [ Crash Pass ]\ncrbug.com/1311206 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-038.html [ Failure ]\ncrbug.com/1299946 [ Mac ] external/wpt/css/css-sizing/min-content-negative-margin-crash.html [ Pass Timeout ]\n\n# Needs \"new\" flex container intrinsic size algorithm.\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-max-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-min-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-004.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-006.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-009.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-border-sizing.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-content-sizing.html [ Failure ]\n\n# These require css-align-3 positional keywords that Blink doesn't yet support for flexbox.\ncrbug.com/1011718 external/wpt/css/css-flexbox/flexbox-safe-overflow-position-001.html [ Failure ]\n\n# We don't currently support visibility: collapse in flexbox\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-baseline-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-002.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-003.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse-line-wrapping.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse.html [ Failure ]\n\ncrbug.com/606208 external/wpt/css/css-flexbox/order/order-abs-children-painting-order.html [ Failure ]\n# We paint in an incorrect order when layers are present. Blocked on composite-after-paint.\ncrbug.com/370604 external/wpt/css/css-flexbox/flexbox-paint-ordering-002.xhtml [ Failure ]\n\n# We haven't implemented last baseline alignment.\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001a.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001b.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-006.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-007.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-008.xhtml [ Failure ]\n\n# [css-lists]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item.html [ Failure ]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item-2.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-005.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-004.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-001.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-002.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-003.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item.html [ Failure ]\ncrbug.com/1270480 external/wpt/css/css-lists/marker-webkit-text-fill-color.html [ Failure ]\ncrbug.com/1270483 external/wpt/css/css-lists/li-value-counter-reset-001.html [ Failure ]\ncrbug.com/947844 external/wpt/css/css-lists/list-item-definition.html [ Failure ]\n\ncrbug.com/1330383 external/wpt/css/css-lists/counter-list-item-slot-order.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-order-display-contents.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order-scoping.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order.html [ Failure ]\n\n# [css-counter-styles-3]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/prefix-suffix-syntax.html [ Failure ]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-syntax.html [ Failure ]\ncrbug.com/1168277 external/wpt/css/css-counter-styles/counter-style-at-rule/disclosure-styles.html [ Failure ]\ncrbug.com/1176315 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-function.html [ Failure ]\n\n# [css-overflow]\n# Incorrect WPT tests.\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-008.html [ Failure ]\ncrbug.com/993813 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-025.html [ Failure ]\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-029.html [ Failure ]\n\n# Maybe WontFix according to the bug\ncrbug.com/750992 external/wpt/css/css-overflow/margin-block-end-scroll-area-001.html [ Failure ]\n\n# Lack of support for font-language-override\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-01.html [ Failure ]\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-02.html [ Failure ]\n\n# Comparing variable font rendering to static font rendering fails on systems that use FreeType for variable fonts\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-underline-position-from-font-variable.html [ Failure ]\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-decoration-thickness-from-font-variable.html [ Failure ]\n# Windows 10 bot upgrade now causes these failures on Windows-10-18363\ncrbug.com/1140324 [ Win11 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1140324 [ Win10.20h2 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1143005 [ Win10.20h2 ] media/track/track-cue-rendering-vertical.html [ Failure ]\n\n# Skip spaces at the start and end of a line\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-001.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-002.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-003.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-004.html [ Failure ]\n\n# Tentative mansonry tests\ncrbug.com/1076027 external/wpt/css/css-grid/masonry/* [ Skip ]\n\n# external/wpt/css/css-fonts/... tests triaged away from the default WPT bug ID\ncrbug.com/1211460 external/wpt/css/css-fonts/alternates-order.html [ Failure ]\ncrbug.com/641861 [ Mac ] external/wpt/css/css-fonts/font-family-name-025.html [ Failure ]\ncrbug.com/443467 external/wpt/css/css-fonts/font-feature-settings-descriptor-01.html [ Failure ]\ncrbug.com/819816 external/wpt/css/css-fonts/font-kerning-03.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-009.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-010.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-011.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-02.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-03.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-04.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-05.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-06.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-07.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-08.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-09.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-10.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-11.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-12.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-13.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-14.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-15.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-16.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-17.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-18.html [ Failure ]\ncrbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/font-variant-ligatures-11.optional.html [ Failure ]\ncrbug.com/1212668 external/wpt/css/css-fonts/font-variant-position.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ar.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ur.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja-vs-zh.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ur-vs-ar.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-zh.html [ Failure ]\ncrbug.com/1269537 [ Mac ] fast/css-generated-content/quotes-lang.html [ Failure Pass ]\n\ncrbug.com/1317062 external/wpt/html/rendering/non-replaced-elements/phrasing-content-0/br-wbr-content/content-property.tentative.html [ Failure ]\n\n# Flaky layout tests\ncrbug.com/1356336 fast/block/float/shrink-to-avoid-float-complexity.html [ Failure Pass ]\n\n# ====== Layout team owned tests to here ======\n\n# ====== LayoutNG-only failures from here ======\n# LayoutNG - is a new layout system for Blink.\n\ncrbug.com/591099 css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/boundary-shaping/boundary-shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-010.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/835484 fast/css/outline-narrowLine.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-continuation.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-list-translate.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects.html [ Failure ]\ncrbug.com/889721 fast/inline/outline-continuations.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/font-format-support-color-cff2-vertical.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/whitespace/018.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/auto-sizing-orthogonal-flows.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/percentage-height-orthogonal-writing-modes.html [ Failure ]\ncrbug.com/835484 paint/invalidation/outline/inline-focus.html [ Failure ]\ncrbug.com/591099 paint/invalidation/scroll/fixed-under-composited-fixed-scrolled.html [ Failure ]\n\n# CSS Text failures\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-105.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-018.html [ Failure Pass ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-026.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-028.html [ Failure ]\ncrbug.com/602434 external/wpt/css/css-text/text-transform/text-transform-tailoring-001.html [ Failure ]\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-006.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-multiple-001.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-033.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-end-of-line-001.html [ Failure ]\ncrbug.com/1098801 external/wpt/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-013.html [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-discard-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-trim-trim-inner-001.xht [ Failure ]\n\n# LayoutNG ref-tests that need to be updated (cannot be rebaselined).\ncrbug.com/591099 [ Win ] virtual/text-antialias/ellipsis-with-self-painting-layer.html [ Failure ]\ncrbug.com/1098801 virtual/text-antialias/whitespace/whitespace-in-pre.html [ Failure ]\n\n# LayoutNG failures that needs to be triaged\ncrbug.com/591099 virtual/text-antialias/selection/selection-rect-line-height-too-small.html [ Failure ]\ncrbug.com/591099 fast/css-intrinsic-dimensions/width-avoid-floats.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/selection/inline-block-in-selection-root.html [ Failure ]\ncrbug.com/591099 [ Win ] editing/selection/paint-hyphen.html [ Failure Pass ]\ncrbug.com/591099 [ Mac11 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac12 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counter-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counters-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/CSS2/text/white-space-bidirectionality-001.xht [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-002.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-003.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00C.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/word-break/word-break-break-all-004.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-transforms/transform-inline-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-027.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-028.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-embed-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-isolate-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-normal-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-override-006.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-plaintext-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content-counter-010.htm [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content/content-quotes-07.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/forms/text/text-lineheight-centering.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/column-count-with-rules.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-big-line.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/box/hover-pseudo-borders.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-auto.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/flexbox/remove-inline-block-descendant-of-flex.html [ Failure ]\n\n# A few other lines for this test are commented out above to avoid conflicting expectations.\n# If they are not also fixed, reinstate them when removing these lines.\ncrbug.com/982211 fast/events/before-unload-return-value-from-listener.html [ Crash Pass Timeout ]\n\n# WPT css-writing-mode tests failing for various reasons beyond simple pixel diffs\ncrbug.com/1222818 external/wpt/css/css-writing-modes/logical-physical-mapping-001.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-005.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-003.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-014.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-013.html [ Failure ]\ncrbug.com/717862 [ Mac ] external/wpt/css/css-writing-modes/mongolian-orientation-002.html [ Failure ]\ncrbug.com/717862 external/wpt/css/css-writing-modes/mongolian-orientation-001.html [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\n\n### With LayoutNGFragmentItem enabled\ncrbug.com/982194 [ Win10.20h2 ] fast/writing-mode/border-image-vertical-lr.html [ Failure Pass ]\n\n# Known issues with offsetTop/offsetLeft in a fragmented context, see crbug.com/1347984\ncrbug.com/1347984 fragmentation/table-in-subpixel-fragmentainer.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-break-freely.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-with-thead.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions.html [ Failure ]\n\n### Tests failing with LayoutNGFlexFragmentation enabled:\ncrbug.com/660611 fast/multicol/flexbox/doubly-nested-with-zero-width-flexbox-and-forced-break-crash.html [ Skip ]\n\n### Tests failing with LayoutNGTableFragmentation enabled:\ncrbug.com/1078927 external/wpt/css/CSS2/floats-clear/clearance-containing-fragmented-float-crash.html [ Crash Failure ]\ncrbug.com/1295905 [ Mac11-arm64 ] external/wpt/css/css-break/table/sections-and-captions-mixed-order.html [ Failure ]\ncrbug.com/1078927 external/wpt/css/css-multicol/table/balance-table-with-border-spacing.html [ Failure ]\ncrbug.com/1078927 fast/multicol/table-row-height-increase.html [ Failure ]\ncrbug.com/1078927 fragmentation/border-spacing-break-before-unbreakable-row.html [ Failure ]\ncrbug.com/1078927 fragmentation/no-repeating-table-header-after-sections.html [ Failure ]\ncrbug.com/1352931 fragmentation/repeating-thead-under-repeating-thead.html [ Failure ]\n\n### Tests failing with LayoutNGPrinting enabled:\ncrbug.com/1121942 virtual/layout_ng_printing/printing/block-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-but-static-headers-and-footers.html [ Crash Failure ]\ncrbug.com/1121942 [ Debug Mac11 ] virtual/layout_ng_printing/printing/fixed-positioned-child-shouldnt-print.html [ Crash Failure Pass ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-clipped.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-overflow-scroll.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/flexbox-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/multi-page-background.html [ Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/webgl-oversized-printing.html [ Skip ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/width-overflow.html [ Failure ]\n\n# Tests passing with LayoutNGPrinting enabled:\nvirtual/layout_ng_printing/printing/fixedpos-in-multicol.html [ Pass ]\nvirtual/layout_ng_printing/printing/monolithic-at-page-block-end-horizontal-tb.html [ Pass ]\n\n### TablesNG\n# crbug.com/958381\n\n# TODO fails because cell size with only input element is 18px, not 15. line-height: 0px fixes it.\ncrbug.com/1171616 external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html [ Failure ]\n\n# Composited background painting leaves gaps.\ncrbug.com/958381 fast/table/border-collapsing/composited-cell-collapsed-border.html [ Failure ]\ncrbug.com/958381 fast/table/border-collapsing/composited-row-collapsed-border.html [ Failure ]\n\n# Rowspanned cell overflows TD visible rect.\ncrbug.com/958381 external/wpt/css/css-tables/visibility-collapse-rowspan-005.html [ Failure ]\n\n# Mac failures - antialiasing of ref\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-087.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-088.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-089.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-090.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-091.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-092.xht [ Failure ]\ncrbug.com/958381 [ Mac ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Win ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Mac ] fragmentation/single-line-cells-paginated-with-text.html [ Failure ]\n\ncrbug.com/1356256 fast/table/percent-widths-float.html [ Failure Pass ]\n\n# TablesNG ends\n\n### With LayoutNGView enabled:\n\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/flex-container-fragmentation-008.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/single-line-column-flex-fragmentation-029.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-001.xht [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-004.xht [ Failure ]\ncrbug.com/1294155 paint/invalidation/outline/outline-change-vertical-rl.html [ Failure ]\ncrbug.com/1294155 printing/fixed-positioned-overflow-scroll.html [ Failure ]\ncrbug.com/1294155 printing/multi-page-background.html [ Failure ]\ncrbug.com/1294155 [ Win ] printing/vertical-rl.html [ Failure ]\ncrbug.com/1294155 scrollbars/scrollbars-on-positioned-content.html [ Failure ]\n\n# ====== LayoutNG-only failures until here ======\n\n# ====== MathMLCore-only tests from here ======\n\n# These tests fail because some CSS properties affect MathML layout.\ncrbug.com/1227601 external/wpt/mathml/relations/css-styling/ignored-properties-001.html [ Failure Timeout ]\ncrbug.com/1227598 external/wpt/mathml/relations/css-styling/width-height-001.html [ Failure ]\n\n# These tests fail because we don't parse math display values according to the spec.\ncrbug.com/1127222 external/wpt/mathml/presentation-markup/mrow/legacy-mrow-like-elements-001.html [ Failure ]\n\n# This test fails on windows. It should really be made more reliable and take\n# into account fallback parameters.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/fractions/frac-1.html [ Failure ]\n\n# Tests failing only on certain platforms.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/operators/mo-axis-height-1.html [ Failure ]\ncrbug.com/6606 [ Mac ] external/wpt/mathml/relations/text-and-math/use-typo-metrics-1.html [ Failure ]\n\n# Additonal presentation-markup failures\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-5.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-7.html [ Failure ]\n\n# These tests fail because we don't support the MathML href attribute, which is\n# not part of MathML Core Level 1.\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-1.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-3.html [ Failure ]\n\n# These tests fail because they require full support for new text-transform\n# values and mathvariant attribute. Currently, we only support the new\n# text-transform: auto, use the UA rule for the <mi> element and map\n# mathvariant=\"normal\" to \"text-transform: none\".\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-case-sensitivity.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-initial.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-looped.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-monospace.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-stretched.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-tailed.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-basic-transforms-with-default-font.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck-font-style-font-weight.html [ Failure ]\n\n# ====== Style team owned tests from here ======\n\ncrbug.com/1353560 [ Linux ] external/wpt/css/css-content/quotes-001.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-006.html [ Failure ]\ncrbug.com/1341208 [ Mac ] external/wpt/css/css-content/quotes-007.html [ Skip ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-009.html [ Failure ]\ncrbug.com/1353560 [ Mac10.13 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 [ Mac10.14 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 external/wpt/css/css-content/quotes-013.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-014.html [ Failure ]\ncrbug.com/1353560 [ Mac10.15 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Win ] external/wpt/css/css-content/quotes-030.html [ Failure ]\ncrbug.com/1067277 external/wpt/css/css-content/element-replacement-on-replaced-element.tentative.html [ Failure ]\n\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-columns.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-ruby.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-grid.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-math.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-flex.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span-dynamic.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-block.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-details.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-fieldset.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-option.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-1.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-2.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span.html [ Failure ]\n\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-with-table-child.html [ Failure ]\ncrbug.com/1012289 [ Win10.20h2 ] external/wpt/css/css-lists/list-style-type-string-005b.html [ Failure ]\n\n# css-pseudo\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-001.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-001.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-004.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-001.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-child-marker.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-hi-001.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-digraph.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-001.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/target-text-004.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-grammar-error.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-spelling-error.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Pass ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-002.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-001.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-002.html [ Failure ]\ncrbug.com/1351020 [ Mac ] external/wpt/compat/webkit-text-fill-color-property-002.html [ Failure ]\n\n# CSS highlight painting (HighlightOverlayPainting)\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-painting-003.html [ Failure ]\ncrbug.com/1321114 paint/markers/suggestion-marker-basic.html [ Failure ]\n\ncrbug.com/1205953 external/wpt/css/css-will-change/will-change-fixpos-cb-position-1.html [ Failure ]\ncrbug.com/1207788 external/wpt/css/css-will-change/will-change-stacking-context-mask-1.html [ Failure ]\n\n# lab color space not yet implemented\ncrbug.com/1358565 external/wpt/css/css-images/gradient/gradient-eval-003.html [ Failure ]\n# color() function not implemented\ncrbug.com/1068610 external/wpt/css/css-color/predefined-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-011.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-012.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-016.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-basic-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-non-srgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-01.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-02.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-005.html [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-a0.6-a.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/t32-opacity-basic-0.6-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-basic-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-b.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/at-color-profile-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-currentcolor-001.html [ Failure ]\n\ncrbug.com/1343361 external/wpt/css/css-color/currentcolor-003.html [ Failure ]\n\ncrbug.com/1299585 [ Mac11 ] external/wpt/css/css-color-adjust/inheritance.html [ Failure ]\ncrbug.com/1299585 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html [ Failure Pass ]\n\ncrbug.com/1357623 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred.html [ Failure ]\n\n# @supports\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-001.html [ Failure ]\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-002.html [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-040.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-041.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-042.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/at-supports-046.html [ Failure ]\n\n# CSS Scrollbars\ncrbug.com/891944 external/wpt/css/css-scrollbars/textarea-scrollbar-width-none.html [ Failure ]\ncrbug.com/891944 external/wpt/css/css-scrollbars/transparent-on-root.html [ Failure ]\n# Incorrect native scrollbar repaint\ncrbug.com/891944 [ Mac ] external/wpt/css/css-scrollbars/scrollbar-width-paint-001.html [ Failure ]\n\n# css-nesting\ncrbug.com/1095675 external/wpt/css/selectors/nesting.html [ Failure ]\n\n# Failures on specific Mac bots\ncrbug.com/1319399 [ Mac11 ] external/wpt/css/selectors/focus-visible-025.html [ Failure ]\n\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-16.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-64.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-62.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-161.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18c.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-61.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-63.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-20.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-66.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-21.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-177a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-17.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-65.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-159.xml [ Skip ]\n\n# Failures from CSS3 Text (text-justify and text-indent: hanging/each-line) not being implemented.\ncrbug.com/248894 external/wpt/css/css-pseudo/first-letter-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-pseudo/first-line-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-composition.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/inheritance.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-indent/text-indent-each-line-hanging.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-002.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-004.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-005.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-006.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-and-trailing-spaces-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-distribute-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-character-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-word-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-none-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-indent.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-justify.html [ Failure ]\ncrbug.com/248894 external/wpt/web-animations/responsive/textIndent.html [ Failure ]\n\ncrbug.com/1364304 external/wpt/css/css-variables/css-variable-change-style-001.html [ Failure Pass ]\n\n# ====== Style team owned tests to here ======\n\n# Failing WPT html/semantics/* tests. Not all have been investigated.\ncrbug.com/1233659 external/wpt/html/semantics/embedded-content/the-embed-element/embed-represent-nothing-04.html [ Failure ]\ncrbug.com/1234202 external/wpt/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-menu.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-skip-no-boxes.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-007.html [ Failure ]\ncrbug.com/1167095 external/wpt/html/semantics/forms/form-submission-0/text-plain.window.html [ Pass Timeout ]\ncrbug.com/939561 [ Mac ] external/wpt/html/semantics/forms/the-input-element/show-picker.tentative.html [ Skip ]\ncrbug.com/1132413 external/wpt/html/semantics/scripting-1/the-script-element/json-module/parse-error.html [ Timeout ]\ncrbug.com/1232504 external/wpt/html/semantics/embedded-content/media-elements/src_object_blob.html [ Timeout ]\ncrbug.com/1232504 [ Win ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/1234199 [ Linux ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1234199 [ Mac ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1232504 [ Mac11 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\ncrbug.com/1232504 [ Mac12 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\n\ncrbug.com/1292852 [ Mac ] external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow.html [ Failure Pass ]\n\n# XML nodes aren't match by .class selectors:\ncrbug.com/649444 external/wpt/css/selectors/xml-class-selector.xml [ Failure ]\n\n# Bug in <select multiple> tap behavior:\ncrbug.com/1045672 fast/forms/select/listbox-tap.html [ Failure ]\n\n### sheriff 2019-07-16\ncrbug.com/983799 [ Win ] http/tests/navigation/redirect-on-back-updates-history-item.html [ Pass Timeout ]\n\n### sheriff 2018-05-28\n\ncrbug.com/767269 [ Win ] inspector-protocol/layout-fonts/cjk-ideograph-fallback-by-lang.js [ Failure Pass ]\n\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\n\n# Elastic overscroll doesn't work on Mac/Linux when running as a web_test. Manually,\n# this works as expected.\ncrbug.com/1310079 [ Mac ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\ncrbug.com/1310079 [ Linux ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\n\n# For win10, see crbug.com/955109\ncrbug.com/538697 [ Win ] printing/webgl-oversized-printing.html [ Crash Failure ]\n\ncrbug.com/904592 css3/filters/backdrop-filter-svg.html [ Failure ]\ncrbug.com/904592 [ Linux ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\ncrbug.com/904592 [ Win ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\n\ncrbug.com/280342 http/tests/media/progress-events-generated-correctly.html [ Failure Pass Timeout ]\n\n# This test is flaky when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 fast/table/frame-and-rules.html [ Failure Pass Timeout ]\n\n# This test needs a new reference when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 [ Mac11 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac11-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\n\ncrbug.com/520736 [ Linux ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\ncrbug.com/909095 [ Mac ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\n\n# Hiding video::-webkit-media-controls breaks --force-overlay-fullscreen-video.\ncrbug.com/1093447 virtual/android/fullscreen/rendering/backdrop-video.html [ Failure ]\n\n# gpuBenchmarking.pinchBy is busted on desktops for touchscreen pinch\ncrbug.com/787615 [ Win ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\ncrbug.com/787615 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\n\n# gpuBenchmarking.pinchBy is not implemented on Mac for touchscreen pinch\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-out-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow-desktop.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-desktop.html [ Skip ]\n\ncrbug.com/520188 [ Win ] http/tests/local/fileapi/file-last-modified-after-delete.html [ Failure Pass ]\ncrbug.com/520611 [ Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Failure Pass ]\ncrbug.com/520194 http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires.html [ Failure Pass ]\n\ncrbug.com/1051136 fast/forms/select/listbox-overlay-scrollbar.html [ Failure ]\n\n# These performance-sensitive user-timing tests are flaky in debug on all platforms, and flaky on all configurations of windows.\n# See: crbug.com/567965, crbug.com/518992, and crbug.com/518993\n\ncrbug.com/432129 html/marquee/marquee-scroll.html [ Failure Pass ]\ncrbug.com/326139 crbug.com/390125 media/video-frame-accurate-seek.html [ Failure Pass ]\ncrbug.com/421283 html/marquee/marquee-scrollamount.html [ Failure Pass ]\n\n# TODO(oshima): Move the event scaling code to eventSender and remove this.\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/gesture-scroll-amount.html [ Failure Timeout ]\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Linux ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Win ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\n\n# Only virtual/threaded version of these tests pass (or running them with --enable-threaded-compositing).\ncrbug.com/936891 fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Failure ]\n\ncrbug.com/498539 http/tests/devtools/tracing/timeline-misc/timeline-bound-function.js [ Failure Pass ]\n\ncrbug.com/498539 crbug.com/794869 crbug.com/798548 crbug.com/946716 http/tests/devtools/elements/styles-4/styles-update-from-js.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/889952 fast/selectors/selection-window-inactive.html [ Failure Pass ]\n\ncrbug.com/1107923 inspector-protocol/debugger/wasm-streaming-url.js [ Failure Pass Timeout ]\n\n# Script let/const redeclaration errors\ncrbug.com/1042162 http/tests/inspector-protocol/console/console-let-const-with-api.js [ Failure Pass ]\n\n# Will be re-enabled and rebaselined once we remove the '--enable-file-cookies' flag.\ncrbug.com/470482 fast/cookies/local-file-can-set-cookies.html [ Skip ]\n\n# Text::inDocument() returns false but should not.\ncrbug.com/264138 dom/legacy_dom_conformance/xhtml/level3/core/nodecomparedocumentposition38.xhtml [ Failure ]\n\ncrbug.com/411164 [ Win ] http/tests/security/powerfulFeatureRestrictions/serviceworker-on-insecure-origin.html [ Pass ]\n\ncrbug.com/686118 http/tests/security/setDomainRelaxationForbiddenForURLScheme.html [ Crash Pass ]\n\n# Flaky tests on Mac after enabling scroll animations in web_tests\ncrbug.com/944583 [ Mac ] fast/events/keyboard-scroll-by-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/space-scroll-textinput-canceled.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll-on-iframe.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-x-in-scrolling-page.html [ Failure Pass Timeout ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-y-in-scrolling-page.html [ Failure Pass Timeout ]\n# Sheriff: 2020-05-18\ncrbug.com/1083820 [ Mac ] fast/scrolling/document-level-wheel-event-listener-passive-by-default.html [ Failure Pass ]\n\n# In external/wpt/html/, we prefer checking in failure\n# expectation files. The following tests with [ Failure ] don't have failure\n# expectation files because they contain local path names.\n# Use crbug.com/490511 for untriaged failures.\ncrbug.com/108417 external/wpt/html/rendering/non-replaced-elements/tables/table-border-1.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/color.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/width.html [ Failure ]\ncrbug.com/692560 external/wpt/html/semantics/document-metadata/styling/LinkStyle.html [ Failure Pass ]\n\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins.html [ Failure ]\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins-2.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-painting-order.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-display-rendering.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-tall.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3s.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3q.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/anonymous-button-content-box.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/inline-level.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1l.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2l.html [ Failure ]\n\ncrbug.com/821455 editing/pasteboard/drag-files-to-editable-element.html [ Failure ]\n\ncrbug.com/1170052 external/wpt/mediacapture-streams/MediaStreamTrack-MediaElement-disabled-audio-is-silence.https.html [ Pass Timeout ]\ncrbug.com/1174937 [ Mac10.15 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Mac11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\n\ncrbug.com/766135 fast/dom/Window/redirect-with-timer.html [ Pass Timeout ]\n\n# Ref tests that needs investigation.\ncrbug.com/404597 fast/forms/long-text-in-input.html [ Skip ]\ncrbug.com/552494 virtual/prefer_compositing_to_lcd_text/scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-018.html [ Failure ]\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-024.html [ Failure ]\ncrbug.com/1134483 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-036.html [ Failure ]\n\ncrbug.com/745905 external/wpt/css/css-ui/text-overflow-021.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html [ Failure ]\n\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Crash Failure ]\n\ncrbug.com/1067031 external/wpt/css/css-overflow/webkit-line-clamp-035.html [ Failure ]\n\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-margin-001.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-inset-003.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-polygon-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-shape-arguments-000.html [ Failure Pass ]\n\ncrbug.com/1339541 [ Linux ] compositing/framesets/composited-frame-alignment.html [ Failure Pass ]\n\ncrbug.com/424365 external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-016.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-013.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-014.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-015.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-043.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-048.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-023.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-027.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-022.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-046.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-052.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-051.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-026.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-049.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-047.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-053.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-050.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-037.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-025.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-007.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-007.html [ Failure ]\n\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-001.html [ Failure ]\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-002.html [ Failure ]\ncrbug.com/1140728 external/wpt/css/css-text/hyphens/hyphens-span-002.html [ Failure ]\ncrbug.com/1139693 virtual/text-antialias/hyphens/midword-break-priority.html [ Failure ]\n\ncrbug.com/1250257 external/wpt/css/css-text/tab-size/tab-size-block-ancestor.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-001.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-002.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-003.html [ Failure ]\ncrbug.com/970200 external/wpt/css/css-text/text-indent/text-indent-tab-positions-001.html [ Failure ]\ncrbug.com/1030452 external/wpt/css/css-text/text-transform/text-transform-upperlower-016.html [ Failure ]\n\ncrbug.com/1008029 [ Mac ] external/wpt/css/css-text/white-space/pre-wrap-018.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-019.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-013.html [ Failure ]\n\n# Handling of trailing other space separator\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-002.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-003.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-004.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-002.html [ Failure ]\n\ncrbug.com/1162836 external/wpt/css/css-text/white-space/full-width-leading-spaces-004.html [ Failure ]\n\n# Follow up the spec change for U+2010, U+2013\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-loose-hyphens-001.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-normal-hyphens-002.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-strict-hyphens-002.html [ Failure ]\n\n# Inseparable characters\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-normal-015a.xht [ Failure ]\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-strict-015a.xht [ Failure ]\n\n# Link event firing\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html [ Timeout ]\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html [ Timeout ]\n\n# crbug.com/1095379: These are flaky-slow, but are already present in SlowTests\ncrbug.com/73609 http/tests/media/video-play-stall.html [ Failure Pass Timeout ]\ncrbug.com/518987 http/tests/xmlhttprequest/navigation-abort-detaches-frame.html [ Pass Timeout ]\ncrbug.com/538717 [ Win ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/829740 fast/history/history-back-twice-with-subframes-assert.html [ Pass Timeout ]\ncrbug.com/836783 fast/peerconnection/RTCRtpSender-setParameters.html [ Pass Timeout ]\n\n# crbug.com/1218715 This fails when PartitionConnectionsByNetworkIsolationKey is enabled.\ncrbug.com/1218715 external/wpt/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\ncrbug.com/1218715 wpt_internal/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\n\n# Sheriff 2021-05-25\ncrbug.com/1209900 fast/peerconnection/RTCPeerConnection-reload-sctptransport.html [ Failure Pass ]\n\n# This test is currently failing everywhere\ncrbug.com/846981 fast/webgl/texImage-imageBitmap-from-imageData-resize.html [ Skip ]\n\n# crbug.com/1095379: These fail with a timeout, even when they're given extra time (via SlowTests)\ncrbug.com/1135405 http/tests/devtools/sources/debugger-pause/debugger-pause-infinite-loop.js [ Pass Timeout ]\ncrbug.com/1072022 [ Mac ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/1072022 [ Linux ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/915903 http/tests/security/inactive-document-with-empty-security-origin.html [ Pass Timeout ]\ncrbug.com/987138 [ Linux ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/987138 [ Win ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/1122742 http/tests/devtools/sources/debugger/source-frame-inline-breakpoint-decorations.js [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck.https.html [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck-cors-import.https.html [ Pass Timeout ]\ncrbug.com/805756 external/wpt/html/semantics/tabular-data/processing-model-1/span-limits.html [ Pass Timeout ]\n\n# crbug.com/1218716: These fail when TrustTokenOriginTrial is enabled.\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation-xhr.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-default-feature-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-supported-by-feature-policy.tentative.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-default-permissions-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-supported-by-permissions-policy.tentative.html [ Failure ]\n\n# Sheriff 2020-02-06\n\n# These are added to W3CImportExpectations as Skip, remove when next import is done.\ncrbug.com/666657 external/wpt/css/css-text/hanging-punctuation/* [ Skip ]\n\ncrbug.com/909597 external/wpt/css/css-ui/text-overflow-ruby.html [ Failure ]\n\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-001.html [ Failure ]\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-002.html [ Failure ]\n\n# crbug.com/1218721: These tests fail when libvpx_for_vp8 is enabled.\ncrbug.com/1218721 fast/borders/border-radius-mask-video-shadow.html [ Failure ]\ncrbug.com/1218721 fast/borders/border-radius-mask-video.html [ Failure ]\ncrbug.com/1218721 [ Mac ] http/tests/media/video-frame-size-change.html [ Failure ]\n\ncrbug.com/637055 fast/css/outline-offset-large.html [ Skip ]\n\n# Either \"combo\" or split should run: http://testthewebforward.org/docs/css-naming.html\ncrbug.com/410320 external/wpt/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001.html [ Skip ]\n\n# These tests pass but images do not match because of wrong half-leading in vertical-lr\n\n# These tests pass but images do not match because of position: absolute in vertical flow bug\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-003.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-005.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-007.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-009.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-002.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-004.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-006.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-008.xht [ Failure ]\n\n# These tests pass but images do not match because tests are stricter than the spec.\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-001.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-002.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-003.html [ Failure ]\n\n# We're experimenting with changing the behavior of the 'nonce' attribute\n\n# These CSS Writing Modes Level 3 tests pass but causes 1px diff on images, notified to the submitter.\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-020.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-020.xht [ Failure ]\n\ncrbug.com/381684 [ Mac ] fonts/family-fallback-gardiner.html [ Skip ]\ncrbug.com/381684 [ Win ] fonts/family-fallback-gardiner.html [ Skip ]\n\ncrbug.com/377696 printing/setPrinting.html [ Failure ]\ncrbug.com/1311165 printing/fixed-positioned-but-static-headers-and-footers.html [ Failure ]\ncrbug.com/1121942 printing/fixedpos-in-multicol.html [ Failure ]\ncrbug.com/1121942 printing/monolithic-at-page-block-end-horizontal-tb.html [ Failure ]\ncrbug.com/1121942 printing/page-break-avoid.html [ Failure ]\n\ncrbug.com/1204498 external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass ]\ncrbug.com/1223681 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass Timeout ]\n\n# crbug.com/1218723 This test fails when SplitCacheByNetworkIsolationKey is enabled.\ncrbug.com/1218723 http/tests/devtools/network/network-prefetch.js [ Failure ]\n\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure Pass ]\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure Pass ]\n\ncrbug.com/524160 [ Debug ] http/tests/media/media-source/stream_memory_tests/mediasource-appendbuffer-quota-exceeded-default-buffers.html [ Timeout ]\n\n# based on Builder Win7 Tests (1) and flakyness dashboard\ncrbug.com/1325545 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.html [ Failure Pass ]\ncrbug.com/1325515 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1325518 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.html [ Failure Pass ]\ncrbug.com/1325538 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.serviceworker.html [ Failure Pass ]\n\n# On all platforms media tests don't currently use gpu-accelerated (proprietary)\n# codecs, so no benefit to running them again with gpu acceleration enabled.\ncrbug.com/555703 virtual/media-gpu-accelerated/* [ Skip ]\n\ncrbug.com/400841 media/video-canvas-draw.html [ Failure ]\n\n# switching to apache-win32: needs triaging.\ncrbug.com/528062 [ Win ] http/tests/css/missing-repaint-after-slow-style-sheet.pl [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-data-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-hybrid-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/security/XFrameOptions/x-frame-options-cached.html [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/security/contentSecurityPolicy/cached-frame-csp.html [ Failure ]\n\n# When drawing subpixel smoothed glyphs, CoreGraphics will fake bold the glyphs.\n# In this configuration, the pixel smoothed glyphs will be created from subpixel smoothed glyphs.\n# This means that CoreGraphics may draw outside the reported glyph bounds, and in this case does.\n# By about a quarter or less of a pixel.\ncrbug.com/997202 [ Mac ] virtual/text-antialias/international/bdo-bidi-width.html [ Failure ]\n\ncrbug.com/574283 [ Mac ] fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\n\ncrbug.com/599670 [ Win ] http/tests/devtools/resource-parameters-ipv6.js [ Crash Failure Pass ]\ncrbug.com/472330 fast/borders/border-image-outset-split-inline-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-rl.html [ Failure ]\n\ncrbug.com/346473 fast/events/drag-on-mouse-move-cancelled.html [ Failure ]\n\n# These tests are skipped as there is no touch support on Mac.\ncrbug.com/613672 [ Mac ] fast/events/pointerevents/multi-pointer-event-in-slop-region.html [ Skip ]\n\n# In addition to having no support on Mac, the following test times out\n# regularly on Windows.\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll-by-page.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchpad-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchscreen-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-mainframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-xhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-yhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-diagonally.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe-editable.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-input-field.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-past-extent.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page.html [ Skip ]\n\n# Since there is no compositor thread when running tests then there is no main thread event queue. Hence the\n# logic for this test will be skipped when running Layout tests.\ncrbug.com/770028 external/wpt/pointerevents/pointerlock/pointerevent_getPredictedEvents_when_pointerlocked-manual.html [ Skip ]\ncrbug.com/770028 external/wpt/pointerevents/pointerevent_predicted_events_attributes-manual.html [ Skip ]\n\n# This test relies on racy should_send_resource_timing_info_to_parent() flag being sent between processes.\ncrbug.com/957181 external/wpt/resource-timing/nested-context-navigations-iframe.html [ Failure Pass ]\n\n# During work on crbug.com/1171767, we discovered a bug demonstrable through\n# WPT. Marking as a failing test until we update our implementation.\ncrbug.com/1223118 external/wpt/resource-timing/initiator-type/link.html [ Failure ]\n\n# Chrome touch-action computation ignores div transforms.\ncrbug.com/715148 external/wpt/pointerevents/pointerevent_touch-action-rotated-divs_touch-manual.html [ Skip ]\n\ncrbug.com/658304 [ Win ] fast/forms/select/input-select-after-resize.html [ Crash Failure Pass Timeout ]\n\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-001.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-002.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-003.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-004.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005a.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006a.html [ Failure ]\n\ncrbug.com/1029069 [ Mac ] external/wpt/css/css-fonts/standard-font-family.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-11.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-12.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-13.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-14.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-15.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-16.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-19.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-20.html [ Failure ]\n\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-2.html [ Failure ]\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-3.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-text-decor/text-decoration-thickness-percent-001.html [ Failure ]\n\ncrbug.com/752449 [ Mac10.14 ] external/wpt/css/css-fonts/matching/fixed-stretch-style-over-weight.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-fonts/size-adjust-text-decoration.tentative.html [ Failure ]\n\n# CSS Font Feature Resolution is not implemented yet\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-001.html [ Failure ]\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-002.html [ Failure ]\n\n# Disabled briefly until test runner support lands.\ncrbug.com/479533 accessibility/show-context-menu.html [ Skip ]\ncrbug.com/479533 accessibility/show-context-menu-shadowdom.html [ Skip ]\ncrbug.com/483653 accessibility/scroll-containers.html [ Skip ]\n\n# Temporarily disabled until document marker serialization is enabled for AXInlineTextBox\ncrbug.com/1227485 accessibility/spelling-markers.html [ Failure ]\n\n# Bugs caused by enabling DMSAA on OOPR-Canvas\ncrbug.com/1229463 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-largedraws.html [ Crash ]\ncrbug.com/1229486 virtual/oopr-canvas2d/fast/canvas/canvas-incremental-repaint.html [ Failure ]\n\n# Temporarily disabled after chromium change\ncrbug.com/492511 [ Mac ] virtual/text-antialias/atsui-negative-spacing-features.html [ Failure ]\ncrbug.com/492511 [ Mac ] virtual/text-antialias/international/arabic-justify.html [ Failure ]\n\ncrbug.com/501659 fast/xsl/xslt-missing-namespace-in-xslt.xml [ Failure ]\n\ncrbug.com/501659 http/tests/security/xss-DENIED-xml-external-entity.xhtml [ Failure ]\ncrbug.com/501659 fast/css/stylesheet-candidate-nodes-crash.xhtml [ Failure ]\n\n# TODO(chrishtr) uncomment ones marked crbug.com/591500 after fixing crbug.com/665259.\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-but-static-headers-and-footers.html [ Failure Pass ]\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Failure Pass ]\n\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/list-item-with-empty-first-line.html [ Failure ]\n\ncrbug.com/353746 virtual/android/fullscreen/video-specified-size.html [ Failure Pass ]\n\ncrbug.com/525296 fast/css/font-load-while-styleresolver-missing.html [ Crash Failure Pass ]\n\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-window.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-worker.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-sharedworker.html [ Failure Pass Timeout ]\n\ncrbug.com/548765 http/tests/devtools/console-fetch-logging.js [ Failure Pass ]\n\ncrbug.com/399951 http/tests/mime/javascript-mimetype-usecounters.html [ Failure Pass ]\n\ncrbug.com/663847 fast/events/context-no-deselect.html [ Failure Pass ]\n\ncrbug.com/611658 [ Win ] virtual/text-antialias/emphasis-combined-text.html [ Failure ]\n\ncrbug.com/654477 [ Win ] compositing/video/video-controls-layer-creation.html [ Failure Pass ]\ncrbug.com/654477 fast/hidpi/video-controls-in-hidpi.html [ Failure ]\ncrbug.com/654477 fast/layers/video-layer.html [ Failure ]\n# These could likely be removed - see https://chromium-review.googlesource.com/c/chromium/src/+/1252141\ncrbug.com/654477 media/controls-focus-ring.html [ Failure ]\n\ncrbug.com/637930 http/tests/media/video-buffered.html [ Failure Pass ]\n\ncrbug.com/613659 external/wpt/quirks/percentage-height-calculation.html [ Failure ]\n\n# Note: this test was previously marked as slow on Debug builds. Skipping until crash is fixed\ncrbug.com/619978 fast/css/giant-stylesheet-crash.html [ Skip ]\n\ncrbug.com/624430 [ Win10.20h2 ] virtual/text-antialias/font-features/caps-casemapping.html [ Failure ]\n\ncrbug.com/399507 virtual/threaded/http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# These tests have test harness errors and PASS lines that have a\n# non-deterministic order.\ncrbug.com/705125 fast/mediacapturefromelement/CanvasCaptureMediaStream-capture-out-of-DOM-element.html [ Failure ]\n\n# Working on getting the CSP tests going:\ncrbug.com/694525 external/wpt/content-security-policy/navigation/to-javascript-parent-initiated-child-csp.html [ Skip ]\n\n# These tests will be added back soon:\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html [ Skip ]\n\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-cross-document-traversal.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-hashchange.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-pushstate.html [ Timeout ]\n\n# These two are like the above but some bots seem to give timeouts that count as failures according to the -expected.txt,\n# while other bots give actual timeouts.\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-same-document-nav.html [ Failure Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-nav.html [ Failure Timeout ]\n\ncrbug.com/876485 fast/performance/performance-measure-null-exception.html [ Failure ]\n\ncrbug.com/713587 external/wpt/css/css-ui/caret-color-006.html [ Skip ]\n\n# Unprefixed image-set() not supported\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-rendering.html [ Failure ]\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-content-rendering.html [ Failure ]\n\ncrbug.com/604875 external/wpt/css/css-images/tiled-gradients.html [ Failure ]\n\ncrbug.com/1347068 external/wpt/css/css-images/gradient/gradient-eval-004.html [ Failure ]\n\ncrbug.com/808834 [ Linux ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\ncrbug.com/808834 [ Win ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\n\ncrbug.com/723741 virtual/threaded/http/tests/devtools/tracing/idle-callback.js [ Crash Failure Pass Timeout ]\n\n# Untriaged failures after https://crrev.com/c/543695/.\n# These need to be updated but appear not to be related to that change.\ncrbug.com/626703 http/tests/devtools/indexeddb/database-refresh-view.js [ Failure Pass ]\ncrbug.com/626703 crbug.com/946710 http/tests/devtools/extensions/extensions-sidebar.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/805463 external/wpt/acid/acid3/numbered-tests.html [ Skip ]\n\ncrbug.com/828506 [ Win ] fast/events/touch/scroll-without-mouse-lacks-mousemove-events.html [ Failure Pass ]\n\n# Failure messages are unstable so we cannot create baselines.\ncrbug.com/832071 external/wpt/service-workers/service-worker/worker-client-id.https.html [ Failure ]\n\n# failures in external/wpt/css/css-animations/ and web-animations/ from Mozilla tests\ncrbug.com/849859 external/wpt/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html [ Failure ]\n\n# Some control characters still not visible\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-001.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-002.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-003.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-004.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-005.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-006.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-007.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-008.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00B.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-00D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-010.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-011.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-012.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-013.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-014.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-015.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-016.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-017.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-018.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-019.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01F.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-07F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-080.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# tests in this group need implementation of keyDown/keyUp\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/multiDevice.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/actionsWithKeyPressed.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/textEditCommands.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-input-element/checkable-active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-button-element/active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-canceling.html [ Failure ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/inert-node-is-uneditable.html [ Failure ]\n# tests in this group need implementation of focus navigation forward/backward\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/delegatesFocus-highlight-sibling.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback-default-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-2levels.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-with-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-with-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-nested-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassigned-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-with-negative-index.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# for these tests there is an exception when scrolling: element click intercepted error\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-basic.html [ Failure Timeout ]\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-scrolling.html [ Failure Timeout ]\n\n# crbug.com/1298321: \"element click intercepted error\" when <body style=\"zoom:2\">.\ncrbug.com/1298321 fast/forms/calendar-picker/calendar-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/calendar-picker/date-picker-appearance-zoom150.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/select-popup/popup-menu-appearance-zoom.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/suggestion-picker/date-suggestion-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\n\n# crbug.com/1299212: These need more work after the revamp of picker-common.js\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-appearance-coarse.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-position.html [ Failure Pass Timeout ]\ncrbug.com/1299212 http/tests/webfont/popup-menu-load-webfont-after-open.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/week-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/month-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/datetimelocal-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-appearance-after-closing-popup.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-popup-appearance-basic.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select/menulist-popup-type-ahead-style-change.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Failure Pass ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/datetimelocal/datetimelocal-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/month/month-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/time/time-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/week/week-picker-input-change-events.html [ Crash Pass Timeout ]\n# This might be just flaky on Windows:\ncrbug.com/1299212 [ Linux ] fast/forms/select/menulist-popup-mutation-crash.html [ Failure Pass Timeout ]\n# These appear to be flaky at least on Linux:\ncrbug.com/1299212 [ Linux ] fast/forms/week/week-picker-ax.html [ Failure Pass ]\ncrbug.com/1299212 [ Linux ] fast/forms/select-popup/popup-menu-ax.html [ Failure Pass ]\n\n# isInputPending requires threaded compositing and layerized iframes\ncrbug.com/910421 external/wpt/is-input-pending/* [ Skip ]\ncrbug.com/910421 virtual/threaded-composited-iframes/external/wpt/is-input-pending/* [ Pass ]\n\n# requestIdleCallback requires threaded compositing\ncrbug.com/1259718 external/wpt/requestidlecallback/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/external/wpt/requestidlecallback/* [ Pass ]\ncrbug.com/1259718 http/tests/devtools/isolated-code-cache/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/http/tests/devtools/isolated-code-cache/* [ Pass ]\n\n# WebVTT is off because additional padding\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_completely_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_down.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/bidi_ruby.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_LF_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2028_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2029_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0041_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u05D0_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0628_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u06E9_no_strong_dir.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/cue_too_long.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/decode_escaped_entities.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/disable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_line.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/enable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_height_19.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/single_quote.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_90.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_99.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_0_is_top.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_1_wrapped_cue_grow_downwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_-2_wrapped_cue_grow_upwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_height400_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/navigate_cue_position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/one_line_cue_plus_wrapped_cue.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/repaint.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/cue_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_box.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/cue_func_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/id_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_allowed_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/type_selector_root.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_voice_attribute.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/bold_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/inherit_as_default_value_inherits_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/italic_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/underline_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/size_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/scroll_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/single_line_top_left.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/width_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/start_alignment.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_rl.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_ruby-position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_vertical_text-combine-upright.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ]\n\n# Flaky test\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\n\n# FontFace object failures detected by WPT test\ncrbug.com/965409 external/wpt/css/css-font-loading/fontface-descriptor-updates.html [ Failure ]\n\ncrbug.com/1002514 external/wpt/web-share/share-sharePromise-internal-slot.https.html [ Crash Failure ]\n\ncrbug.com/1029514 external/wpt/html/semantics/embedded-content/the-video-element/resize-during-playback.html [ Failure Pass ]\n\n# ::first-line issues\ncrbug.com/1085772 external/wpt/css/css-pseudo/first-line-opacity-001.html [ Failure ]\ncrbug.com/798257 external/wpt/css/css-pseudo/first-line-line-height-002.html [ Failure ]\n\n# motion-1 issues\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-005.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-006.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-007.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-009.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-001.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-005.html [ Failure ]\ncrbug.com/654669 external/wpt/css/motion/offset-path-shape.html [ Failure ]\ncrbug.com/654666 external/wpt/css/motion/offset-path-url.html [ Failure ]\n\n# Various css-values WPT failures\ncrbug.com/1053965 external/wpt/css/css-values/ex-unit-004.html [ Failure ]\ncrbug.com/759914 external/wpt/css/css-values/ch-unit-011.html [ Failure ]\ncrbug.com/965366 external/wpt/css/css-values/ch-unit-017.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-002.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-003.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-009.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-010.html [ Failure ]\n\ncrbug.com/1069300 external/wpt/css/css-pseudo/active-selection-063.html [ Failure ]\ncrbug.com/1108711 external/wpt/css/css-pseudo/active-selection-057.html [ Failure ]\ncrbug.com/1110399 external/wpt/css/css-pseudo/active-selection-031.html [ Failure ]\ncrbug.com/1110401 external/wpt/css/css-pseudo/active-selection-045.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-027.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-025.html [ Failure ]\n\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-base-container.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-text-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/improperly-contained-annotation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rb-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-block-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rt-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-annotation-pairing-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-abs.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-different-size.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-004.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-model-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-float-handling-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-lang-specific-style-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-text-collapse.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rbc-rtc-basic-001.html [ Failure ]\n\ncrbug.com/1223955 external/wpt/css/css-ruby/nested-ruby-pairing-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-005.html [ Failure ]\n\ncrbug.com/1333451 external/wpt/css/css-ruby/intra-base-white-space-001.html [ Failure ]\n\n# WebRTC: there's an open bug with some capture scenarios not working.\ncrbug.com/1156408 external/wpt/webrtc/RTCPeerConnection-relay-canvas.https.html [ Failure Pass Timeout ]\n\ncrbug.com/1074547 external/wpt/css/css-transitions/transitioncancel-002.html [ Timeout ]\n\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-004.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-005.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-styling-002.html [ Failure ]\ncrbug.com/1113004 external/wpt/css/css-pseudo/active-selection-043.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-051.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-052.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-053.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-054.html [ Failure ]\ncrbug.com/1018465 external/wpt/css/css-pseudo/active-selection-056.html [ Failure ]\ncrbug.com/932343 external/wpt/css/css-pseudo/active-selection-014.html [ Failure ]\n\n# virtual/css-highlight-inheritance/\ncrbug.com/1217745 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/active-selection-018.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-004.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-005.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-004.html [ Pass ]\ncrbug.com/1309822 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Pass ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-001.html [ Pass ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Pass ]\n\ncrbug.com/825270 external/wpt/payment-request/delegate-request.https.sub.html [ Failure ]\ncrbug.com/1105958 external/wpt/payment-request/payment-is-showing.https.html [ Failure Timeout ]\n\n### external/wpt/css/CSS2/tables/\ncrbug.com/958381 external/wpt/css/CSS2/tables/column-visibility-004.xht [ Failure ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-079.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-080.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-081.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-082.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-083.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-084.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-085.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-086.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-093.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-094.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-095.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-096.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-097.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-098.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-103.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-104.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-125.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-126.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-127.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-128.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-129.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-130.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-131.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-132.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-155.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-156.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-157.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-158.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-167.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-168.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-171.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-172.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-181.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-182.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-183.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-184.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-185.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-186.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-187.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-188.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-199.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-200.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-201.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-202.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-203.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-204.xht [ Skip ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/anonymous-table-box-width-001.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-009.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-010.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-011.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-012.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-015.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-016.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-017.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-019.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-020.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-177.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-178.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-179.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-180.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-189.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-190.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-191.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-192.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-193.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-194.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-195.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-196.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-197.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-198.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-205.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-206.xht [ Failure ]\n\n# Custom-elements\ncrbug.com/1351482 external/wpt/custom-elements/form-associated/ElementInternals-target-element-is-held-strongly.html [ Timeout ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml [ Crash ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]\ncrbug.com/1365604 [ Mac ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Crash Pass Timeout ]\ncrbug.com/1365604 [ Win ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Pass Timeout ]\n\n# unblock roll wpt\ncrbug.com/626703 external/wpt/service-workers/service-worker/worker-interception.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/worker-interception.https.html [ Pass ]\n\n# ====== Test expectations added to unblock wpt-importer ======\ncrbug.com/626703 external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 virtual/threaded/external/wpt/requestidlecallback/deadline-max-timeout-dynamic.html [ Failure ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 external/wpt/preload/preload-resource-match.https.html [ Failure ]\ncrbug.com/1359555 virtual/prerender/external/wpt/speculation-rules/prerender/workers.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/restriction-presentation-request.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/storage-foundation.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/partitioned-cookies/http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Failure ]\n\n# ====== New tests from wpt-importer added here ======\ncrbug.com/626703 [ Win11 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/redirect/redirect-upload.h2.any.sharedworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/csp-early-hints-absent-final-disallowed.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/referrer-policy-same-origin.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/closing-handshake/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/013.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/022.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-getting.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/007.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/xhr/status.h2.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/page-visibility/visibility-state-entry.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-persistent-permission.https.html [ Crash Failure ]\n# TODO(crbug.com/1358135, crbug.com/1358147): Re-enable this test: Re-enable this test\ncrbug.com/626703 [ Mac10.14 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/orientation-event/motion/page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/key-scrolling.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/fetch/api/response/response-clone.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.worker.html [ Crash Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/basic/request-upload.h2.any.worker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/coep-early-hints-none-final-require-corp.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/iframe-pdf.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/preconnect-in-early-hints.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-delayed.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/003.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/009.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/private-network-access/fetch.window.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win11 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/permissions-policy/reporting/xr-report-only.https.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-classic.http-rp/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-module-data.meta/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-classic-data.meta/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-module-data.http-rp/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/002.html?wss [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss [ Skip Timeout ]\ncrbug.com/626703 virtual/view-transition/wpt_internal/view-transition/content-with-transform-old-image.html [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment.html [ Failure Skip Timeout ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-cross-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-main-frame-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-remove-subframe.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-same-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc-encoded-transform/RTCPeerConnection-insertable-streams-simulcast.https.html [ Failure Pass Timeout ]\n# TODO(crbug.com/1315625): Re-enable this test\ncrbug.com/626703 external/wpt/webrtc-encoded-transform/sframe-keys.https.html [ Skip ]\ncrbug.com/626703 external/wpt/geolocation-API/getCurrentPosition_permission_allow.https.html [ Timeout ]\ncrbug.com/626703 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/idlharness.https.window.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-on-self-origin-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/exported-names.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-import-wasm-export.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-js-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker-import.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker.tentative.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/resource-timing/object-not-found-adds-entry.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCConfiguration-iceTransportPolicy.html [ Skip Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webaudio/the-audio-api/the-pannernode-interface/ctor-panner.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.14 ] virtual/portals/external/wpt/portals/no-portal-in-sandboxed-popup.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/unload-a-document/005.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-values/cap-unit-001.html [ Failure ]\ncrbug.com/626703 external/wpt/selection/textcontrols/onselectionchange-content-attribute.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_call.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_postMessage.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_serialize.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-capture-video.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/1270841 [ Mac ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-19.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/web-locks/bfcache/abort.tentative.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/workers/modules/shared-worker-import-csp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_AES-CTR.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.html?1-10 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker.html?141-150 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/import_export/ec_importKey.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/backplate/forced-colors-mode-backplate-01.html [ Crash ]\ncrbug.com/626703 external/wpt/workers/interfaces/WorkerUtils/importScripts/blob-url.worker.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/tables/table-anonymous-objects-211.xht [ Failure ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 external/wpt/editing/run/forwarddelete.html?6001-last [ Failure ]\ncrbug.com/626703 external/wpt/selection/contenteditable/initial-selection-on-focus.tentative.html?div [ Failure ]\ncrbug.com/626703 external/wpt/geolocation-API/non-fully-active.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/selection/textcontrols/selectionchange-bubble.html [ Timeout ]\ncrbug.com/626703 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio-cross-origin.sub.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html [ Failure ]\ncrbug.com/626703 external/wpt/density-size-correction/image-set-003.html [ Failure ]\ncrbug.com/626703 external/wpt/infrastructure/assumptions/non-local-ports.sub.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel-service-worker.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-blocked-port.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.html [ Pass Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.worker.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.worker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/serviceworker/cache-abort.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/opening-handshake/005.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCSctpTransport-maxChannels.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/simplecall.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/bundle.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/video-rvfc/request-video-frame-callback-webrtc.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-demuxing.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/1209223 external/wpt/html/syntax/xmldecl/xmldecl-2.html [ Failure ]\ncrbug.com/626703 [ Mac ] editing/pasteboard/drag-selected-image-to-contenteditable.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xrSession_requestReferenceSpace_features.https.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-same-site.html [ Crash Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-different-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-same-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-different-site.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/backpressure-receive.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/1191547 external/wpt/html/semantics/forms/the-label-element/proxy-modifier-click-to-associated-element.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/websockets/cookies/001.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/002.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/003.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/005.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/007.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 [ Mac ] virtual/threaded/external/wpt/css/css-scroll-snap/input/keyboard.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/preload/download-resources.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys-combinations.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys.html [ Timeout ]\ncrbug.com/626703 [ Mac10.13 ] virtual/threaded/external/wpt/web-animations/timing-model/animations/updating-the-finished-state.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-stop.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xr_viewport_scale.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/editing/other/select-all-and-delete-in-html-element-having-contenteditable.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/iframe.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/crossOrigin.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-during-and-after-dispatch.tentative.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/scroll-to-text-fragment/redirects.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/fetch/connection-pool/network-partition-key.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-backspace.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-forwarddelete.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/workers/postMessage_block.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/order-of-events/focus-events/focus-management-expectations.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/preload/onload-event.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/workers/shared-worker-parse-error-failure.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-operations.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-dpr/content-dpr-various-elements.html [ Failure ]\ncrbug.com/626703 external/wpt/workers/abrupt-completion.html [ Timeout ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/ready.https.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/fetch/corb/script-resource-with-nonsniffable-types.tentative.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/web-animations/timing-model/animation-effects/phases-and-states.html [ Crash ]\ncrbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/snap-to-line.html [ Failure ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-offer.html [ Timeout ]\ncrbug.com/626703 external/wpt/webauthn/idlharness-manual.https.window.js [ Skip ]\ncrbug.com/1004760 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-pan-x-pan-y-pan-y_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-none-css_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames-after-reappend.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/steps_for_selecting_the_payment_handler.html [ Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/apply_the_modifiers.html [ Timeout ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-tracks.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-remote-track-mute.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/fetch/content-type/response.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-dynamic-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-001.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/url/a-element.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-url-with-space.any.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange-long.https.html [ Failure Pass ]\n\n### virtual/prerender/external/wpt/speculation-rules/prerender\ncrbug.com/1126305 [ Mac10.15 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/restrictions.html [ Skip Timeout ]\n\n### See crbug.com/891427 comment near the top of this file:\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-004.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-001.svg [ Failure ]\n\ncrbug.com/1131471 external/wpt/web-locks/clientids.tentative.https.html [ Failure ]\n\n# See also crbug.com/920100 (sheriff 2019-01-09).\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/external-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style-with-differentorigin-base-tag.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/internal-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/presentation-attribute.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/processing-instruction.html [ Failure Timeout ]\n\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-complex-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-bicubic-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-005.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-002.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-003.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-pause-resume.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-9.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-8.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-7.html [ Failure ]\ncrbug.com/626703 external/wpt/quirks/text-decoration-doesnt-propagate-into-tables/quirks.html [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-002.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-002.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-speak-without-activation-fails.tentative.html [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-007.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-005.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-002.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-003.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-201.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-002.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-006.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-003.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-101.svg [ Failure ]\ncrbug.com/626703 external/wpt/clear-site-data/executionContexts.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-security-policy/securitypolicyviolation/targeting.html [ Timeout ]\ncrbug.com/626703 external/wpt/web-animations/timing-model/timelines/update-and-send-events.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/orientation-reading.html [ Timeout ]\n\n# Tests that rely on a non-exposed test-only API. Tested in virtual/task-tracking\nwpt_internal/task-tracking/* [ Failure Skip ]\nvirtual/task-tracking/* [ Pass ]\ncrbug.com/1326491 [ Mac ] virtual/task-tracking/wpt_internal/task-tracking/soft-navigation-heuristics/detached-iframe-container.html [ Timeout ]\n\ncrbug.com/626703 external/wpt/fetch/security/redirect-to-url-with-credentials.https.html [ Timeout ]\ncrbug.com/981970 external/wpt/fetch/http-cache/split-cache.html [ Skip ]\ncrbug.com/626703 external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-026.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/acid/acid2/reftest.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/acid/acid3/test.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-006.html [ Skip ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-007.html [ Skip ]\ncrbug.com/626703 external/wpt/compat/webkit-text-fill-color-property-005.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-002.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-collapsing-bidi-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-mixed-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006b.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006c.xht [ Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-avtracks.html [ Crash Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Failure Timeout ]\ncrbug.com/958104 external/wpt/presentation-api/controlling-ua/getAvailability.https.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event-subframe.html [ Timeout ]\n\n# These tests pass on the blink_rel bots but fail on the other builders\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-3-ref.html [ Crash ]\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-4.html [ Crash Timeout ]\n\n# Moved from NeverFixTests. These may be relevant again now that\n# overlay scrollbars have been fixed (crrev.com/c/3455024).\ncrbug.com/1296816 [ Win ] virtual/overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure ]\n\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-004.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-007.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-009.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-010.html [ Failure ]\n\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-006.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-007.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-008.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-km-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-my-000.html [ Failure ]\ncrbug.com/1017164 [ Linux ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-tdd-000.html [ Failure ]\ncrbug.com/1015331 external/wpt/css/css-text/white-space/eol-spaces-bidi-001.html [ Failure ]\n\ncrbug.com/899264 external/wpt/css/css-text/letter-spacing/letter-spacing-control-chars-001.html [ Failure ]\n\ncrbug.com/1290460 [ Mac ] external/wpt/css/css-text/letter-spacing/letter-spacing-bengali-yaphala-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-005.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-003.html [ Failure ]\n\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-1.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-2.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-3.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-4.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-001.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-002.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-003.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-008.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-009.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-010.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-015.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-016.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-017.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-01.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-02.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-03.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-04.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/word-spacing/word-spacing-001.html [ Failure ]\n\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-002.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-004.html [ Failure ]\ncrbug.com/614667 external/wpt/css/css-break/grid/grid-item-fragmentation-039.html [ Failure ]\ncrbug.com/1058792 external/wpt/css/css-break/transform-007.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-break/transform-009.html [ Failure ]\ncrbug.com/1156312 external/wpt/css/css-break/widows-orphans-017.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-001.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-002.html [ Failure ]\ncrbug.com/1225630 external/wpt/css/css-multicol/large-actual-column-count.html [ Skip ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-004.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-005.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-nobackground-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-005.html [ Failure ]\ncrbug.com/1356561 external/wpt/css/css-multicol/multicol-overflow-transform-001.html [ Failure Pass ]\ncrbug.com/792435 external/wpt/css/css-multicol/multicol-rule-004.xht [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-inset-000.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-001.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-002.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-003.html [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-001.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-002.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-003.html [ Failure ]\ncrbug.com/636055 external/wpt/css/css-multicol/multicol-span-all-margin-nested-002.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-span-all-rule-001.html [ Failure ]\ncrbug.com/964183 external/wpt/css/css-multicol/multicol-width-005.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-zero-height-003.html [ Failure ]\ncrbug.com/1191124 external/wpt/css/css-multicol/spanner-fragmentation-012.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-multicol/spanner-in-opacity.html [ Failure ]\n\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-007.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-009.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-011.tentative.html [ Failure ]\ncrbug.com/1097992 external/wpt/css/css-pseudo/marker-font-variant-numeric-normal.html [ Failure ]\ncrbug.com/1060007 external/wpt/css/css-pseudo/marker-text-combine-upright.html [ Failure ]\n\n# iframe tests time out if the request is blocked as mixed content.\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/iframe-tag.https.html [ Skip Timeout ]\n\n# Different results on try bots and CQ, skipped to unblock wpt import.\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-default-css.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-element.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-window.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-scrollintoview-nested.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-smooth-positions.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-window.html [ Skip ]\n\ncrbug.com/1289222 external/wpt/css/cssom-view/scroll-behavior-smooth-navigation.html [ Skip Timeout ]\n\n# Crashes with DCHECK enabled, but not on normal Release builds.\ncrbug.com/809935 external/wpt/css/css-fonts/variations/font-style-interpolation.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-011.html [ Crash Failure Pass ]\n\n# <input disabled> does not fire click events after dispatchEvent\ncrbug.com/1115661 external/wpt/dom/events/Event-dispatch-click.html [ Timeout ]\n\ncrbug.com/1088280 [ Mac ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\ncrbug.com/1088280 [ Win ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\n\n# Implement text-decoration correctly for vertical text\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-thickness-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-underline-offset-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-001.html [ Failure ]\n\ncrbug.com/912362 external/wpt/web-animations/timing-model/timelines/timelines.html [ Failure ]\n\n# crbug.com/1315717: Deprecating <object><param>\ncrbug.com/1315717 external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Failure ]\ncrbug.com/1315717 virtual/object-param-url/external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Pass ]\n\n# Unclear if XHR events should still be fired after its frame is discarded.\ncrbug.com/881180 external/wpt/xhr/open-url-multi-window-4.htm [ Timeout ]\n\ncrbug.com/910709 navigator_language/worker_navigator_language.html [ Timeout ]\n\ncrbug.com/435547 http/tests/cachestorage/serviceworker/ignore-search-with-credentials.html [ Skip ]\n\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\n\n# [css-grid]\ncrbug.com/1045599 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-004.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/grid-definition/grid-repeat-max-width-001.html [ Failure ]\ncrbug.com/1335889 external/wpt/css/css-grid/grid-model/grid-areas-overflowing-grid-container-009.html [ Failure ]\n\n# Simple to fix - but blocked on performance regression requiring cache logic change.\ncrbug.com/1272533 external/wpt/css/css-grid/layout-algorithm/grid-intrinsic-size-dynamic-block-size.html [ Failure ]\n\n# The 'last baseline' keyword is not implemented yet\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-item-self-baseline-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-002.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-004.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-003.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html [ Failure ]\n\n# Baseline Content-Alignment is not implemented yet for CSS Grid Layout\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-align-001.html [ Failure ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-justify-001.html [ Failure ]\n\n# [css-subgrid]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-009.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-smaller-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-template-computed-nogrid.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/independent-formatting-context.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/item-percentage-height-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-002.html [ Crash Failure Timeout ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-stretch.html [ Failure ]\n\ncrbug.com/1236992 svg/dom/SVGListPropertyTearOff-gccrash.html [ Failure Pass ]\n\n# [css-animations]\ncrbug.com/816956 [ Win ] external/wpt/css/css-animations/KeyframeEffect-getKeyframes.tentative.html [ Failure ]\n\ncrbug.com/664450 http/tests/devtools/console/console-on-animation-worklet.js [ Failure Pass Timeout ]\n\n# [css-transitions]\ncrbug.com/1289685 external/wpt/css/css-transitions/properties-value-inherit-001.html [ Failure Pass ]\n\ncrbug.com/826419 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-remove-track-inband.html [ Skip ]\n\ncrbug.com/825798 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-non-snap-to-lines.html [ Failure ]\n\n# This test requires a special browser flag and seems not suitable for a wpt test, see bug.\ncrbug.com/691944 external/wpt/service-workers/service-worker/update-after-oneday.https.html [ Skip ]\n\n# These tests (erroneously) see a platform-specific User-Agent header\ncrbug.com/595993 external/wpt/service-workers/service-worker/fetch-header-visibility.https.html [ Failure ]\n\ncrbug.com/619427 [ Mac ] fast/overflow/overflow-height-float-not-removed-crash3.html [ Failure Pass ]\n\ncrbug.com/660384 external/wpt/webmessaging/with-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/without-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/with-options/broken-origin.html [ Failure ]\n\n# Added 2016-12-12\ncrbug.com/610835 http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html [ Failure Pass ]\n\ncrbug.com/892212 http/tests/wasm/wasm_remote_postMessage_test.https.html [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests from here ======\n# These tests are flaky when run in random order, which is the default on Linux & Mac since since 2016-12-16.\n\ncrbug.com/702837 virtual/text-antialias/aat-morx.html [ Skip ]\n\ncrbug.com/688670 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-removed.html [ Failure Pass ]\n\ncrbug.com/849670 http/tests/devtools/service-workers/service-worker-v8-cache.js [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests end here ======\n\n# ====== Tests from enabling .any.js/.worker.js tests begin here ======\ncrbug.com/709227 external/wpt/html/browsers/history/the-location-interface/per-global.window.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.arc.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.closed.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.curve.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.line.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.rect.worker.html [ Failure ]\n\n# ====== Tests from enabling .any.js/.worker.js tests end here ========\n\ncrbug.com/789139 http/tests/devtools/sources/debugger/live-edit-no-reveal.js [ Crash Failure Pass Timeout ]\n\n# ====== Begin of display: contents tests ======\n\ncrbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]\n\n# ====== End of display: contents tests ======\n\n# ====== Begin of other css-display tests ======\n\ncrbug.com/995106 external/wpt/css/css-display/display-flow-root-list-item-001.html [ Failure ]\n\n# ====== End of other css-display tests ======\n\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16be.html?include=workers [ Skip Timeout ]\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16le.html?include=workers [ Skip Timeout ]\n\ncrbug.com/676229 plugins/mouse-click-plugin-clears-selection.html [ Failure Pass ]\ncrbug.com/742670 plugins/iframe-plugin-bgcolor.html [ Failure Pass ]\ncrbug.com/780398 [ Mac ] plugins/mouse-capture-inside-shadow.html [ Failure Pass ]\ncrbug.com/1331239 [ Mac ] plugins/plugin-remove-subframe.html [ Crash Pass ]\n\ncrbug.com/678493 http/tests/permissions/chromium/test-request-window.html [ Pass Timeout ]\n\ncrbug.com/689781 external/wpt/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Win ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Mac ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\n\ncrbug.com/1359409 [ Mac12 ] http/tests/media/video-preload-metadata.html [ Pass Timeout ]\n\ncrbug.com/1358638 [ Mac11 ] fast/scroll-behavior/middleclick-autoscroll-nested-elements.html [ Failure Pass ]\n\ncrbug.com/1157857 virtual/percent-based-scrolling/max-percent-delta-cross-origin-iframes.html [ Failure Pass Timeout ]\n\ncrbug.com/716320 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.https.html [ Failure Timeout ]\n\n# Test timing out when SharedArrayBuffer is disabled by default.\n# See https://crbug.com/1194557\ncrbug.com/1194557 http/tests/devtools/sources/debugger-breakpoints/set-breakpoint-while-blocking-main-thread.js [ Skip Timeout ]\n\n# Test output varies depending on the bot. A single expectation file doesn't\n# work.\ncrbug.com/1194557 fast/beacon/beacon-basic.html [ Failure Pass ]\n\n# Tests are failing on CodeMirror 6 update, temporarily disable to re-open the tree.\n# Restore set-breakpoint-while-blocking-main-thread.js test to previous state [ Pass ] with\n# crbug.com/1194557 annotation as soon as crbug.com/1270207 has been fixed.\ncrbug.com/1270207 virtual/portals/http/tests/devtools/portals/portals-sources-activate.js [ Skip ]\n\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success-and-failure.html [ Timeout ]\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success.html [ Timeout ]\n\ncrbug.com/831509 external/wpt/service-workers/service-worker/skip-waiting-installed.https.html [ Failure Pass ]\n\n# Fullscreen tests are failed because of consuming user activation on fullscreen\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-twice-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-elements-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html [ Failure Timeout ]\n\n# snav tests fail because of a DCHECK\ncrbug.com/985520 virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-enter-from-interest.html [ Crash ]\n\n# User-Agent is not able to be set on XHR/fetch\ncrbug.com/571722 external/wpt/xhr/preserve-ua-header-on-redirect.htm [ Failure ]\n\n# Sheriff failures 2017-03-21\ncrbug.com/703518 http/tests/devtools/tracing/worker-js-frames.js [ Failure Pass ]\ncrbug.com/674720 http/tests/loading/preload-img-test.html [ Failure Pass ]\n\n# Sheriff failures 2017-05-11\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/source-list-parsing-04.html [ Skip ]\n\n# Sheriff failures 2017-05-16\ncrbug.com/722212 fast/events/pointerevents/mouse-pointer-event-properties.html [ Failure Pass Timeout ]\n# Crashes on win\ncrbug.com/722943 [ Win ] media/audio-repaint.html [ Crash ]\n\n# Sheriff failures 2018-08-15\ncrbug.com/874837 [ Win ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\ncrbug.com/874837 [ Linux ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\n\n# Sheiff failures 2021-04-09\n\ncrbug.com/715718 external/wpt/media-source/mediasource-remove.html [ Failure Pass ]\n\n# Temporarily disabled since tests don't make window key on Mac\ncrbug.com/1267867 [ Mac ] external/wpt/pointerevents/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] external/wpt/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] http/tests/pointer-lock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] pointer-lock/* [ Skip ]\n\n# Feature Policy changes fullscreen behaviour, tests need updating\ncrbug.com/718155 fullscreen/full-screen-restrictions.html [ Failure Timeout ]\n\ncrbug.com/852645 gamepad/full-screen-gamepad.html [ Timeout ]\n\ncrbug.com/1191123 gamepad/gamepad-polling-access.html [ Failure Pass ]\n\n# Feature Policy changes same-origin allowpaymentrequest behaviour, tests need updating\ncrbug.com/718155 payments/payment-request-in-iframe.html [ Failure ]\ncrbug.com/718155 payments/payment-request-in-iframe-nested-not-allowed.html [ Failure ]\n\n# Expect to fail. The test is applicable only when DigitalGoods flag is disabled.\ncrbug.com/1080870 http/tests/payments/payment-request-app-store-billing-mandatory-total.html [ Failure ]\n\n# Layout Tests on Swarming (Windows) - https://crbug.com/717347\ncrbug.com/713094 [ Win ] fast/css/fontfaceset-check-platform-fonts.html [ Failure Pass ]\n\n# Image decode failures due to document destruction.\ncrbug.com/721435 external/wpt/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html [ Skip ]\n\n# Test times out for unknown reasons on chromium-based browsers and Safari.\ncrbug.com/1328330 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-move-into-script-disabled-iframe.html [ Timeout ]\n\n# Test times out for some reason on Chromium browsers\ncrbug.com/1357623 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-zero-intersection-area.html [ Timeout ]\n\n# Sheriff failures 2017-05-23\ncrbug.com/725470 editing/shadow/doubleclick-on-meter-in-shadow-crash.html [ Crash Failure Pass ]\n\n# Sheriff failures 2017-06-14\ncrbug.com/737959 http/tests/misc/object-image-load-outlives-gc-without-crashing.html [ Failure Pass ]\n\ncrbug.com/737959 http/tests/misc/video-poster-image-load-outlives-gc-without-crashing.html [ Crash Failure Pass ]\n\n# module script lacks XHTML support\ncrbug.com/717643 external/wpt/html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml [ Failure ]\n\n# known bug: import() inside set{Timeout,Interval}\n\n# Service worker updates need to handle redirect appropriately.\ncrbug.com/889798 external/wpt/service-workers/service-worker/import-scripts-redirect.https.html [ Skip ]\n\n# Service workers need to handle Clear-Site-Data appropriately.\ncrbug.com/1052641 external/wpt/service-workers/service-worker/unregister-immediately-before-installed.https.html [ Skip ]\ncrbug.com/1052642 external/wpt/service-workers/service-worker/unregister-immediately-during-extendable-events.https.html [ Skip ]\n\n# Sheriff failures 2017-07-03\ncrbug.com/708994 http/tests/security/cross-frame-mouse-source-capabilities.html [ Pass Timeout ]\ncrbug.com/746128 [ Mac ] media/controls/video-enter-exit-fullscreen-without-hovering-doesnt-show-controls.html [ Failure Pass ]\n\n# Tests failing when enabling new modern media controls\ncrbug.com/831942 media/webkit-media-controls-webkit-appearance.html [ Failure Pass ]\ncrbug.com/832157 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-added.html [ Skip ]\ncrbug.com/832169 media/media-controls-fit-properly-while-zoomed.html [ Failure Pass ]\ncrbug.com/849694 [ Mac ] http/tests/media/controls/toggle-class-with-state-source-buffer.html [ Failure Pass ]\ncrbug.com/1348591 [ Win ] http/tests/media/controls/playback-speed-button-infinite-duration.html [ Failure Pass ]\n\n# Tests currently failing on Windows when run on Swarming\ncrbug.com/757165 [ Win ] compositing/culling/filter-occlusion-blur.html [ Skip ]\ncrbug.com/757165 [ Win ] css3/blending/mix-blend-mode-with-filters.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/download-resources.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/preload-default-csp.sub.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/forms/file/recover-file-input-in-unposted-form.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-aligned-not-aligned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-clipped-overflowed-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-only-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-date.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-div-scrollable-but-without-focusable-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-horizontally.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-vertically.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-iframe-recursive-offset-parent.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-not-focusable.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-without-image.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-overlapped-areas.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-simple.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-input.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-multiple-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-below.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-rightof.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-overlapping-elements.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio-group.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-single-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-symmetrically-positioned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-textarea.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-two-elements-one-line.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-z-index.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/devtools/sources/ui-source-code-metadata.js [ Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/misc/client-hints-accept-meta-preloader.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-accelerated-child-with-filter-child.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-on-accelerated-layer.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified-save-restore.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/threaded-no-composited-antialiasing/animations/svg/animated-filter-svg-element.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-clipping.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-fill-style.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-global-alpha.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-image.html [ Skip ]\n# This is timing out on non-windows platforms, marked as skip on all platforms.\ncrbug.com/757165 virtual/gpu/fast/canvas/canvas-blending-gradient-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-text.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-transforms.html [ Skip ]\n# This is currently skipped on all OSes due to crbug.com/775957\n#crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-scale-drawImage-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-strokeRect-alpha-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/image-object-in-canvas.html [ Skip ]\n\n# We cannot yet launch Canvas2D staying GPU on readback\ncrbug.com/1288118 fast/canvas/bug382588.html [ Skip ]\ncrbug.com/1288118 fast/canvas/canvas-gpu-consistency.html [ Skip ]\n\n# Antialiasing error\ncrbug.com/845973 virtual/display-compositor-pixel-dump/fast/canvas/display-compositor-pixel-dump/OffscreenCanvas-opaque-background-compositing.html [ Failure Pass ]\n\n# Tests occasionaly timing out (flaky) on WebKit Win7 dbg builder\ncrbug.com/757955 http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# This test has a fixed number of time which can depend on performance.\n\ncrbug.com/669329 http/tests/devtools/tracing/timeline-js/timeline-runtime-stats.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/769347 [ Mac ] fast/dom/inert/inert-node-is-uneditable.html [ Failure ]\n\ncrbug.com/769056 virtual/text-antialias/emoji-web-font.html [ Failure ]\ncrbug.com/1159689 [ Mac ] virtual/text-antialias/emoticons.html [ Failure Pass ]\n\ncrbug.com/770232 [ Win ] virtual/text-antialias/hyphenate-character.html [ Failure ]\n\n# Editing commands incorrectly assume no plain text length change after formatting text.\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs.html [ Failure ]\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs-in-pre.html [ Failure ]\n\n# Previous/NextWordPosition crossing editing boundaries.\ncrbug.com/900060 editing/selection/mixed-editability-8.html [ Failure ]\n\n# WPT for the missing caretPositionFromPoint implementation\ncrbug.com/388976 external/wpt/css/cssom/caretPositionFromPoint-with-transformation.html [ Timeout ]\n\n# Sheriff failure 2017-09-18\ncrbug.com/766404 [ Mac ] plugins/keyboard-events.html [ Failure Pass ]\n\n# Layout test corrupted after Skia rect tessellation change due to apparent SwiftShader bug.\n# This was previously skipped on Windows in the section for crbug.com/757165\ncrbug.com/775957 virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\n\n# Sheriff failures 2017-09-21\ncrbug.com/767469 http/tests/navigation/start-load-during-provisional-loader-detach.html [ Failure Pass ]\n\n# Sheriff failures 2017-10-02\ncrbug.com/771492 external/wpt/css/css-tables/table-model-fixup-2.html [ Failure ]\n\ncrbug.com/807191 fast/media/mq-color-gamut-picture.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-23\ncrbug.com/772411 http/tests/media/autoplay-crossorigin.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-24\ncrbug.com/773122 crbug.com/777813 [ Win ] virtual/text-antialias/font-ascent-mac.html [ Failure Pass ]\n\n# The \"Lax+POST\" or lax-allowing-unsafe intervention for SameSite-by-default\n# cookies causes POST tests to fail.\ncrbug.com/990439 external/wpt/cookies/samesite/form-post-blank.https.html [ Failure ]\ncrbug.com/843945 external/wpt/cookies/samesite/form-post-blank-reload.https.html [ Failure ]\ncrbug.com/990439 http/tests/cookies/same-site/popup-cross-site-post.https.html [ Failure ]\n\n# Flaky Windows-only content_shell crash\ncrbug.com/1162205 [ Win ] virtual/schemeful-same-site/external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\ncrbug.com/1162205 [ Win ] external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\n\n# Temporarily disable failing cookie control character tests until we implement\n# the latest spec changes. Specifically, 0x00, 0x0d and 0x0a should cause\n# cookie rejection instead of truncation, and the tab character should be\n# treated as a valid character.\ncrbug.com/1233602 external/wpt/cookies/attributes/attributes-ctl.sub.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/name/name-ctl.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/value/value-ctl.html [ Failure ]\n\n# The virtual tests run with Schemeful Same-Site disabled. These should fail to ensure the disabled feature code paths work.\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-websockets.sub.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-iframe-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-navigation.tentative.html [ Failure ]\n\n# These tests fail with Schemeful Same-Site due to their cross-schemeness. Skip them until there's a more permanent solution.\ncrbug.com/1141909 external/wpt/websockets/cookies/001.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/002.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/003.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/005.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/007.html?wss [ Skip ]\n\n# Sheriff failures 2017-12-04\ncrbug.com/667560 http/tests/devtools/elements/styles-4/inline-style-sourcemap.js [ Failure Pass ]\n\n# Double tap on modern media controls is a bit more complicated on Mac but\n# since we are not targeting Mac yet we can come back and fix this later.\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-backwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards-too-short.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-on-play-button.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-toggle-fullscreen.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/click-anywhere-to-play-pause.html [ Skip ]\n\n# Seen flaky on Linux, suppressing on Windows as well\ncrbug.com/831720 [ Win ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 [ Linux ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 media/controls/tap-to-hide-controls.html [ Failure Pass ]\n\n# These tests require Unified Autoplay.\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-default-feature-policy.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-disabled-by-feature-policy.https.sub.html [ Skip ]\n\n# Does not work on Mac\ncrbug.com/793771 [ Mac ] media/controls/scrubbing.html [ Skip ]\n\n# Different paths may have different anti-aliasing pixels 2018-02-21\nskbug.com/7641 external/wpt/css/css-paint-api/paint2d-paths.https.html [ Failure Pass ]\n\n# Sheriff failures 2018-01-25\n# Flaking on Linux Tests, WebKit Linux Trusty (also ASAN, Leak)\ncrbug.com/805794 [ Linux ] virtual/android/url-bar/bottom-fixed-adjusted-when-showing-url-bar.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-05\ncrbug.com/809152 netinfo/estimate-multiple-frames.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-20\ncrbug.com/789921 media/controls/repaint-on-resize.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-21\ncrbug.com/814585 [ Linux ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-cjk.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-22\ncrbug.com/814889 idle-callback/test-runner-run-idle-tasks.html [ Crash Pass Timeout ]\ncrbug.com/814953 fast/replaced/no-focus-ring-iframe.html [ Failure Pass ]\ncrbug.com/814964 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure Pass ]\n\n# These pass on bots with proprietary codecs (most CQ bots) while failing on bots without.\ncrbug.com/807110 external/wpt/html/semantics/embedded-content/media-elements/mime-types/canPlayType.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-addsourcebuffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-buffered.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-a-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-audio-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-framesize.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-video-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-bitrate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framerate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framesize.html [ Failure Pass ]\n# Failure and Pass for crbug.com/807110 and Timeout for crbug.com/727252.\ncrbug.com/727252 external/wpt/media-source/mediasource-endofstream.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-is-type-supported.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sequencemode-append-buffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sourcebuffer-mode-timestamps.html [ Failure Pass ]\ncrbug.com/794338 media/video-rotation.html [ Failure Pass ]\ncrbug.com/811605 media/video-poster-after-loadedmetadata.html [ Failure Pass ]\n\n# MHT works only when loaded from local FS (file://..).\ncrbug.com/778467 [ Fuchsia ] mhtml/mhtml_in_iframe.html [ Failure ]\n\n# These tests timeout when using Scenic ozone platform.\ncrbug.com/1067477 [ Fuchsia ] fast/media/matchmedium-query-api.html [ Skip ]\ncrbug.com/1067477 [ Fuchsia ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\n\n### See crbug.com/891427 comment near the top of this file:\n###crbug.com/816914 [ Mac ] fast/canvas/canvas-drawImage-live-video.html [ Failure Pass ]\ncrbug.com/817167 http/tests/devtools/oopif/oopif-cookies-refresh.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-03-02\ncrbug.com/818076 http/tests/devtools/oopif/oopif-elements-navigate-in.js [ Failure Pass ]\n\n# Sheriff 2018-03-05\ncrbug.com/818650 [ Linux ] wpt_internal/speech/scripted/speechrecognition-restart-onend.html [ Crash Pass ]\n\n# Prefetching Signed Exchange DevTools tests are flaky.\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch-fail.js [ Failure Pass ]\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch.js [ Failure Pass ]\n\n# Prefetching inspector protocol test is flaky\ncrbug.com/1347616 virtual/prefetch/http/tests/inspector-protocol/prefetch/request-will-be-sent.https.js [ Failure Pass ]\n\n# Sheriff 2018-03-22\ncrbug.com/824848 external/wpt/html/semantics/links/following-hyperlinks/activation-behavior.window.html [ Failure Pass ]\n\n# Sheriff 2018-03-26\ncrbug.com/825733 [ Win ] media/color-profile-video-seek-filter.html [ Failure Pass Timeout ]\ncrbug.com/754986 media/video-transformed.html [ Failure Pass ]\n\n# Sheriff 2018-03-29\ncrbug.com/827209 [ Win ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\ncrbug.com/827209 [ Linux ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\n\n# Utility for manual testing, not intended to be run as part of layout tests.\ncrbug.com/785955 http/tests/credentialmanagement/tools/virtual-authenticator-environment-manual.html [ Skip ]\n\n# Sheriff 2018-04-11\ncrbug.com/831796 fast/events/autoscroll-in-textfield.html [ Failure Pass ]\n\n# Sheriff 2018-04-13\ncrbug.com/833655 [ Linux ] media/controls/closed-captions-dynamic-update.html [ Skip ]\ncrbug.com/833658 media/video-controls-focus-movement-on-hide.html [ Failure Pass ]\n\n# Sheriff 2018-05-22\ncrbug.com/845610 [ Win ] http/tests/inspector-protocol/target/target-browser-context.js [ Failure Pass ]\n\ncrbug.com/843135 virtual/gpu/fast/canvas/canvas-arc-circumference-fill.html [ Failure Pass ]\n\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-arc-circumference.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference-fill.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference.html [ Failure ]\n\n# Sheriff 2018-05-31\ncrbug.com/848398 http/tests/devtools/oopif/oopif-performance-cpu-profiles.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-06-07\ncrbug.com/850358 http/tests/devtools/editor/text-editor-enter-behaviour.js [ Failure Pass Timeout ]\ncrbug.com/849978 http/tests/devtools/elements/styles-4/stylesheet-source-url-comment.js [ Failure Pass Timeout ]\n\n# User Activation\ncrbug.com/736415 crbug.com/1066190 external/wpt/html/user-activation/navigation-state-reset-crossorigin.sub.html [ Failure Timeout ]\ncrbug.com/736415 external/wpt/html/user-activation/navigation-state-reset-sameorigin.html [ Failure ]\n\n# S13N Sheriff 2018-7-11\ncrbug.com/862643 http/tests/serviceworker/navigation_preload/use-counter.html [ Failure Pass ]\n\n# Sheriff 2018-07-30\n\ncrbug.com/875884 [ Win ] lifecycle/background-change-lifecycle-count.html [ Failure Pass ]\n\n# Sheriff 2018-08-20\ncrbug.com/862589 virtual/threaded/fast/idle-callback/long_idle_periods.html [ Pass Timeout ]\n\n# fast/events/middleClickAutoscroll-* are failing on Mac\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click-hyperlink.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-drag.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-event-fired.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-in-iframe.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-latching.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-modal-scrollable-iframe-div.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs-forbidden.html [ Skip ]\n# The next also fails due to crbug.com/891427, thus disabled on all platforms.\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/selection-autoscroll-borderbelt.html [ Skip ]\n\n\n# Passes in threaded mode, fails without it. This is a real bug.\ncrbug.com/1112183 fast/scrolling/autoscroll-iframe-no-scrolling.html [ Failure ]\n\n# Sheriff 2018-09-10\ncrbug.com/881207 fast/js/regress/splice-to-remove.html [ Pass Timeout ]\n\ncrbug.com/882689 http/tests/security/cookies/third-party-cookie-blocking-worker.html [ Failure Pass ]\n\n# Sheriff 2018-10-15\ncrbug.com/895257 [ Mac ] external/wpt/css/css-fonts/variations/at-font-face-font-matching.html [ Failure Pass ]\n\n# Test is flaky under load\ncrbug.com/904389 http/tests/preload/delaying_onload_link_preload_after_discovery.html [ Failure Pass ]\n\n# Sheriff 2018-11-26\ncrbug.com/908347 media/autoplay/webaudio-audio-context-resume.html [ Failure Pass ]\n\n#Sheriff 2018-12-04\ncrbug.com/911515 [ Mac ] transforms/shadows.html [ Failure Pass ]\ncrbug.com/911782 [ Mac ] paint/invalidation/forms/submit-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# Sheriff 2018-12-06\ncrbug.com/912793 crbug.com/899087 virtual/android/fullscreen/full-screen-iframe-allowed-video.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2018-12-07\ncrbug.com/912821 http/tests/devtools/tracing/user-timing.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-12-13\ncrbug.com/910452 media/controls/buttons-after-reset.html [ Failure Pass ]\n\ncrbug.com/919272 external/wpt/resource-timing/resource-timing.html [ Skip ]\n\n# Some bots are built without H264/AVC1 encoding support.\ncrbug.com/719023 fast/mediarecorder/MediaRecorder-isTypeSupported-avc1.html [ Failure Pass ]\ncrbug.com/719023 media_capabilities/encodingInfo-avc1.html [ Failure Pass ]\n\n# Sheriff 2019-01-07\ncrbug.com/919587 [ Linux ] virtual/threaded/fast/idle-callback/idle_periods.html [ Failure Pass ]\n\n# Mac doesn't support lowLatency/desynchronized Canvas Contexts.\ncrbug.com/922218 [ Mac ] fast/canvas-api/canvas-lowlatency-getContext.html [ Failure ]\n\n# Sheriff 2019-01-14\ncrbug.com/921583 http/tests/preload/meta-viewport-link-headers.html [ Failure Pass ]\n\n# These fail (some time out, some are flaky, etc.) when landing valid changes to Mojo bindings\n# dispatch timing. Many of them seem to fail for different reasons, but pretty consistently in most\n# cases it seems like a problem around test expectation timing rather than real bugs affecting\n# production code. Because such timing bugs are relatively common in tests and it would thus be very\n# difficult to land the dispatch change without some temporary breakage, these tests are disabled\ncrbug.com/922951 fast/css/pseudo-hover-active-display-none.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 fast/forms/number/number-input-event-composed.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/cache/subresource-fragment-identifier.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/devtools/tracing/timeline-network-received-data.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/history/back-to-post.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/security/cookies/basic.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/webaudio/autoplay-crossorigin.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 media/controls/overflow-menu-hide-on-click-outside-stoppropagation.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/prefer_compositing_to_lcd_text/scrollbars/resize-scales-with-dpi-150.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/frame-model-instrumentation.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-record-reload.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Crash Failure Pass Timeout ]\n\n# Flaky devtools test for recalculating styles.\ncrbug.com/1018177 http/tests/devtools/tracing/timeline-style/timeline-recalculate-styles.js [ Failure Pass ]\n\ncrbug.com/910979 http/tests/html/validation-bubble-oopif-clip.html [ Failure Pass ]\n\n# Sheriff 2019-02-01, 2019-02-19\n# These are crashy on Win10, and seem to leave processes lying around, causing the swarming\n# task to hang.\n\n# Recently became flaky on multiple platforms (Linux and Windows primarily)\ncrbug.com/927769 fast/webgl/OffscreenCanvas-webgl-preserveDrawingBuffer.html [ Skip ]\n\n# Sheriff 2019-02-12\ncrbug.com/1072768 media/video-played-ranges-1.html [ Failure Pass Timeout ]\n\n# These started failing when network service was enabled by default.\ncrbug.com/933880 external/wpt/service-workers/service-worker/request-end-to-end.https.html [ Failure ]\ncrbug.com/933880 http/tests/inspector-protocol/network/xhr-interception-auth-fail.js [ Failure ]\n# This passes in content_shell but not in chrome with network service disabled,\n# because content_shell does not add the about: handler. With network service\n# enabled this fails in both content_shell and chrome.\ncrbug.com/933880 http/tests/misc/redirect-to-about-blank.html [ Failure Timeout ]\n\n# Sheriff 2019-02-22\ncrbug.com/934636 http/tests/security/cross-origin-indexeddb-allowed.html [ Crash Pass ]\ncrbug.com/934818 http/tests/devtools/tracing/decode-resize.js [ Failure Pass ]\n\n# Sheriff 2019-02-28\ncrbug.com/936827 external/wpt/fullscreen/api/element-request-fullscreen-and-remove-manual.html [ Failure Pass ]\n\n# Contentful First Paint failures\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate-descendant.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale-transition.html [ Failure ]\n\n# Also crbug.com/1044535\ncrbug.com/937416 http/tests/devtools/resource-tree/resource-tree-frame-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-04\n# Also crbug.com/1044418\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass ]\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-05\ncrbug.com/938200 http/tests/devtools/network/network-blocked-reason.js [ Pass Timeout ]\n\n# Caused a revert of a good change.\ncrbug.com/931533 media/video-played-collapse.html [ Failure Pass ]\n\n# Sheriff 2019-03-14\ncrbug.com/806357 virtual/threaded/fast/events/pointerevents/pinch/pointerevent_touch-action-pinch_zoom_touch.html [ Crash Failure Pass Timeout ]\n\n# Trooper 2019-03-19\ncrbug.com/943388 [ Win ] http/tests/devtools/network/network-recording-after-reload-with-screenshots-enabled.js [ Failure Pass ]\n\n# Sheriff 2019-03-25\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.js [ Failure Pass ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Failure Pass Timeout ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Failure Pass ]\n\n# Tests using testRunner.useUnfortunateSynchronousResizeMode occasionally timeout,\n# but the test coverage is still good.\ncrbug.com/919789 fast/dom/Window/window-resize-contents.html [ Pass Timeout ]\n\ncrbug.com/1021627 fast/dom/rtl-scroll-to-leftmost-and-resize.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-28\ncrbug.com/946711 http/tests/devtools/editor/text-editor-search-switch-editor.js [ Failure Pass ]\ncrbug.com/946712 [ Release ] http/tests/devtools/elements/styles-2/paste-property.js [ Crash Pass Timeout ]\n\n# Sheriff 2019-04-09\ncrbug.com/946335 [ Linux ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\ncrbug.com/946335 [ Mac ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\n\n# The postMessage() calls intended to complete the test are blocked due to being\n# cross-origin between the portal and the host..\ncrbug.com/1220891 virtual/portals/external/wpt/portals/csp/frame-src.sub.html [ Timeout ]\n\n# Sheriff 2019-04-17\ncrbug.com/953591 [ Win ] fast/forms/datalist/input-appearance-range-with-transform.html [ Failure Pass ]\ncrbug.com/953591 [ Win ] transforms/matrix-02.html [ Failure Pass ]\ncrbug.com/938884 http/tests/devtools/elements/styles-3/styles-add-blank-property.js [ Pass Timeout ]\n\n# Sheriff 2019-04-30\ncrbug.com/948785 fast/events/pointerevents/pointer-event-consumed-touchstart-in-slop-region.html [ Skip ]\n\n# This test might need to be removed.\ncrbug.com/954349 fast/forms/autofocus-in-sandbox-with-allow-scripts.html [ Timeout ]\n\n# Sheriff 2019-05-13\ncrbug.com/865432 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-blob-url.any.worker.html [ Pass Timeout ]\ncrbug.com/867532 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-data-url.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2020-05-18\ncrbug.com/988248 media/track/track-cue-rendering-position-auto.html [ Failure Pass ]\n\n# Flaky test on all platforms.\ncrbug.com/988248 media/track/track-cue-rendering-position-auto-rtl.html [ Failure Pass ]\n\n# Failing because of revert of If931c1faff528a87d8a78808f30225ebe2377072.\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/3_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-line_wrapped.html [ Failure ]\n\n# Sheriff 2019-06-04\ncrbug.com/970135 [ Mac ] virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-interested-element-indicated.html [ Failure ]\ncrbug.com/970334 [ Mac ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Failure ]\ncrbug.com/970142 http/tests/security/mixedContent/insecure-css-resources.html [ Failure ]\n\n# Sheriff 2019-06-05\ncrbug.com/971259 media/controls/volumechange-stopimmediatepropagation.html [ Failure Pass ]\n\n# Expected new failures until crbug.com/535738 is fixed. The failures also vary\n# based on codecs in build config, so just marking failure here instead of\n# specific expected text results.\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-implicit.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-negative.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-without-codecs-parameter.html [ Failure ]\n\n# Sheriff 2019-06-26\ncrbug.com/978966 [ Mac ] paint/markers/ellipsis-mixed-text-in-ltr-flow-with-markers.html [ Failure Pass ]\n\n# Sheriff 2019-06-27\ncrbug.com/979243 [ Mac ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]\ncrbug.com/979336 [ Mac ] fast/dynamic/anonymous-block-orphaned-lines.html [ Failure Pass ]\n\n# Sheriff 2019-07-04\ncrbug.com/981267 http/tests/devtools/persistence/persistence-move-breakpoints-on-reload.js [ Failure Pass Timeout ]\n# TODO(crbug.com/980588): reenable once WPT is fixed\ncrbug.com/980588 external/wpt/screen-orientation/lock-unlock-check.html [ Failure Pass ]\n\n# Sheriff 2019-07-26\ncrbug.com/988246 external/wpt/cookie-store/serviceworker_cookiechange_eventhandler_mismatched_subscription.tentative.https.any.serviceworker.html [ Skip ]\ncrbug.com/959129 http/tests/devtools/tracing/timeline-script-parse.js [ Failure Pass ]\n\n# WebRTC tests that fails (by timing out) because `getSynchronizationSources()`\n# on the audio side needs a hardware sink for the returned dictionary entries to\n# get updated.\n#\n# Temporarily replaced by:\n#   - WebRtcAudioBrowserTest.EstablishAudioOnlyCallAndVerifyGetSynchronizationSourcesWorks\n#   - WebRtcBrowserTest.EstablishVideoOnlyCallAndVerifyGetSynchronizationSourcesWorks\ncrbug.com/988432 external/wpt/webrtc/RTCRtpReceiver-getSynchronizationSources.https.html [ Pass Timeout ]\n\n# Sheriff 2019-07-29\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-07-31\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-shadow.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-all.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-padding.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-mask.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-border.html [ Failure ]\n\n# Expected failures for forced colors mode tests when the corresponding flags\n# are not enabled.\ncrbug.com/970285 external/wpt/forced-colors-mode/* [ Failure ]\ncrbug.com/970285 virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/* [ Pass ]\n\n# Sheriff 2019-08-14\ncrbug.com/993671 [ Win ] http/tests/media/video-frame-size-change.html [ Failure Pass ]\n\n#Sherrif 2019-08-16\ncrbug.com/994692 [ Linux ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\ncrbug.com/994692 [ Win ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\n\ncrbug.com/996219 [ Win ] virtual/text-antialias/emoji-vertical-origin-visual.html [ Failure ]\n\n# Sheriff 2019-08-22\ncrbug.com/994008 [ Linux ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994008 [ Win ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Linux ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Win ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\n\ncrbug.com/995669 [ Win ] http/tests/media/video-throttled-load-metadata.html [ Crash Failure Pass ]\n\ncrbug.com/1015130 external/wpt/largest-contentful-paint/first-paint-equals-lcp-text.html [ Failure Pass ]\n\ncrbug.com/1000051 media/controls/volume-slider.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-09-04\ncrbug.com/1000396 [ Win ] media/video-remove-insert-repaints.html [ Failure Pass ]\n\n# Sheriff 2019-09-09\ncrbug.com/1001817 external/wpt/css/css-ui/text-overflow-016.html [ Failure Pass ]\n\n# Tests fail because of missing scroll snap for #target and bugs in scrollIntoView\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-002.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-002.html [ Failure ]\n\n# Sheriff 2019-09-30\ncrbug.com/1003715 [ Win ] http/tests/notifications/serviceworker-notification-properties.html [ Failure Pass Timeout ]\n\n\n# Sheriff 2019-10-02\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-dom.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-hang.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/selectors/specificity-overflow.html [ Crash Pass ]\n\n# Sheriff 2019-10-16\ncrbug.com/1014812 external/wpt/animation-worklet/playback-rate.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-10-18\ncrbug.com/1015975 media/video-currentTime.html [ Failure Pass ]\n\n# Sheriff 2019-10-21\ncrbug.com/1016456 external/wpt/dom/ranges/Range-mutations-dataChange.html [ Crash Pass Timeout ]\n\n# Sheriff 2019-10-30\ncrbug.com/1014810 [ Mac ] virtual/threaded/external/wpt/animation-worklet/stateful-animator.https.html [ Crash Pass Timeout ]\n\n# Temporarily disabled to a breakpoint non-determinism issue.\ncrbug.com/1019613 http/tests/devtools/sources/debugger/debug-inlined-scripts.js [ Failure Pass ]\n\n# First frame not always painted in time\ncrbug.com/1024976 media/controls/paint-controls-webkit-appearance-none-custom-bg.html [ Failure Pass ]\n\n# iframe.freeze plumbing is not hooked up at the moment.\ncrbug.com/907125 external/wpt/lifecycle/freeze.html [ Failure ] # wpt_subtest_failure\ncrbug.com/907125 external/wpt/lifecycle/child-out-of-viewport.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/child-display-none.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/worker-dispay-none.tentative.html [ Failure Timeout ]\n\n# Sheriff 2019-11-15\ncrbug.com/1025123 external/wpt/longtask-timing/longtask-in-sibling-iframe-crossorigin.html [ Failure Pass ]\n\n# Timeout media preload test until preloading media destinations gets enabled.\ncrbug.com/977033 http/tests/priorities/resource-load-priorities-media-preload.html [ Timeout ]\n\n# Sheriff 2019-11-26\ncrbug.com/1028684 http/tests/inspector-protocol/animation/animation-release.js [ Failure Pass ]\n\n# Sheriff 2019-11-29\ncrbug.com/1019079 fast/canvas/OffscreenCanvas-placeholder-createImageBitmap.html [ Failure Pass ]\ncrbug.com/1027434 external/wpt/html/browsers/origin/cross-origin-objects/cross-origin-objects.html [ Failure Pass Timeout ]\ncrbug.com/1027434 [ Mac11 ] external/wpt/html/browsers/origin/cross-origin-objects/location-properties-smoke-test.html [ Timeout ]\n\n# Sheriff 2019-12-02\ncrbug.com/1029528 [ Linux ] http/tests/devtools/network/oopif-content.js [ Failure Pass ]\n\ncrbug.com/1031345 media/controls/overlay-play-button-tap-to-hide.html [ Pass Timeout ]\n\n# Temporary SkiaRenderer regressions\ncrbug.com/1029941 [ Linux ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1029941 [ Linux ] transforms/3d/point-mapping/3d-point-mapping-deep.html [ Failure ]\ncrbug.com/1029941 [ Linux ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1029941 [ Win ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\n\n# Failing document policy tests\ncrbug.com/993790 external/wpt/document-policy/required-policy/separate-document-policies.html [ Failure ]\n\ncrbug.com/1134464 http/tests/images/document-policy/document-policy-oversized-images-edge-cases.php [ Pass Timeout ]\n\n# Skipping because of unimplemented behaviour\ncrbug.com/965495 external/wpt/feature-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\ncrbug.com/965495 external/wpt/permissions-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\n\ncrbug.com/834302 external/wpt/permissions-policy/permissions-policy-opaque-origin.https.html [ Failure ]\n\n# Temporary suppression to allow devtools-frontend changes\ncrbug.com/1041830 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile.js [ Failure Pass ]\n\n# Sheriff 2019-12-16\ncrbug.com/1034374 http/tests/devtools/tracing/timeline-worker-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-23\ncrbug.com/1036626 http/tests/devtools/tracing/tracing-record-input-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-27\ncrbug.com/1038091 virtual/gpu-rasterization/images/jpeg-yuv-image-decoding.html [ Failure Pass ]\ncrbug.com/1038139 [ Win ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\n# Broken in https://chromium-review.googlesource.com/c/chromium/src/+/1636716\ncrbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakpoints.js [ Failure Pass Timeout ]\n\ncrbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Failure Pass ]\n\n# Sheriff 2020-01-14\ncrbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Failure Pass ]\n\n# Failing origin trial for css properties test\ncrbug.com/1041993 http/tests/origin_trials/sample-api-script-added-after-css-declaration.html [ Failure ]\n\n# Sheriff 2020-01-20\ncrbug.com/1043357 http/tests/credentialmanagement/credentialscontainer-get-with-virtual-authenticator.html [ Failure Pass Timeout ]\n\n# Ref_Tests which fail when SkiaRenderer is enable, and which cannot be\n# rebaselined. TODO(jonross): triage these into any existing bugs or file more\n# specific bugs.\ncrbug.com/1043675 [ Linux ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Linux ] http/tests/media/video-frame-size-change.html [ Failure ]\ncrbug.com/1043675 [ Linux ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] svg/custom/svg-root-with-opacity.html [ Failure ]\n\n# Sheriff 2020-01-23\ncrbug.com/1046784 http/tests/inspector-protocol/service-worker/target-reloaded-after-crash.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-28\ncrbug.com/1046440 fast/loader/submit-form-while-parsing-2.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-29\ncrbug.com/995663 [ Linux ] http/tests/media/autoplay/document-user-activation-cross-origin-feature-policy-header.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-30\ncrbug.com/1047208 http/tests/serviceworker/update-served-from-cache.html [ Failure Pass ]\ncrbug.com/1047293 [ Mac ] editing/pasteboard/pasteboard_with_unfocused_selection.html [ Failure Pass ]\n\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Failure ]\n\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Pass ]\n\n# Swiftshader issue.\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerwidth.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screeny.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-width.html [ Crash Timeout ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-appearance-zoom125.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-top-left-selection-position-after-reopen.html [ Crash Pass ]\ncrbug.com/1048149 crbug.com/1050121 [ Mac ] fast/forms/month/month-picker-appearance-zoom150.html [ Crash Failure Pass ]\n\n# SwANGLE issues\ncrbug.com/1204234 css3/blending/background-blend-mode-single-accelerated-element.html [ Failure ]\n\n# Upcoming DevTools change\ncrbug.com/1006759 http/tests/devtools/profiler/cpu-profiler-save-load.js [ Failure Pass Timeout ]\ncrbug.com/1006759 http/tests/devtools/profiler/heap-snapshot-loader.js [ Failure Pass ]\n\n# Temporarily disabled to land changes in DevTools, multiple dependent CLs\n# [1] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2049183\n# [2] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2119670\n\ncrbug.com/1049456 fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1081277 fast/scrolling/events/scrollend-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1080997 fast/scrolling/events/scrollend-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# \"in-multicol-child.html\" is laid out in legacy layout due by \"multicol\" but\n# reference is laid out by LayoutNG.\ncrbug.com/829028 [ Mac ] editing/caret/in-multicol-child.html [ Failure ]\n\n# Failing tests because of enabling scroll unification flag\n\ncrbug.com/1098383 [ Mac ] fast/events/scrollbar-double-click.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1006759 http/tests/devtools/elements/styles-1/edit-value-url-with-color.js [ Skip ]\n\n#Mixed content autoupgrades make these tests not applicable, since they check for mixed content audio/video\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/audio-tag.https.html [ Failure ]\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/video-tag.https.html [ Failure ]\ncrbug.com/1025274 http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Failure ]\n\n# Sheriff 2020-02-19\ncrbug.com/1053903 external/wpt/webxr/events_referenceSpace_reset_inline.https.html [ Failure Pass Timeout ]\n\n### Subset of scrolling tests that are failing when percent-based scrolling feature is enabled\n# Please look at FlagExpectations/enable-percent-based-scrolling for a full list of known regressions\n\n# fast/events/wheel\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure Timeout ]\n\n# fast/scrolling\ncrbug.com/1330011 virtual/main-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/mouse-scrolling-over-standard-scrollbar.html [ Failure Pass ]\n\n# fast/scrolling/events\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1357787 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\n\n#fast/scroll-behavior/\n\n### END PERCENT BASED SCROLLING TEST FAILURES\n\n# Sheriff 2020-02-28\ncrbug.com/1053861 http/tests/devtools/network/network-initiator-chain.js [ Failure Pass ]\n\ncrbug.com/1057822 http/tests/misc/synthetic-gesture-initiated-in-cross-origin-frame.html [ Crash Failure Pass ]\ncrbug.com/1131977 [ Mac ] http/tests/misc/hover-state-recomputed-on-main-frame.html [ Timeout ]\n\n### sheriff 2020-03-03\ncrbug.com/1058073 [ Mac ] http/tests/devtools/service-workers/sw-navigate-useragent.js [ Failure Pass ]\ncrbug.com/1058137 virtual/threaded/http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\n# Ecosystem-Infra Sheriff 2020-03-04\ncrbug.com/1058403 external/wpt/webaudio/the-audio-api/the-audioworklet-interface/suspended-context-messageport.https.html [ Crash Failure ]\n\n# Ecosystem-Infra Sheriff 2020-04-15\ncrbug.com/1070995 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/blob-data.https.html [ Failure Pass Timeout ]\n\n# navigation tests fail or time out when run with run_web_tests.py but passes with run_wpt_tests.py\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/reload.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/unloading-documents/prompt-and-unload-script-closeable.html [ Failure ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=windows-1252 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=x-cp1251 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=utf8 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/history/joint-session-history/joint-session-history-remove-iframe.html [ Skip Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/sandboxing/window-open-blank-from-different-initiator.html [ Pass Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-click.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-mouseup.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-pageshow.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-load.html [ Timeout ]\n\n# Tests time out, and also give different results.\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screenx.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-top-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-top.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-screenx-screeny.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-width-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-innerwidth-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/windows/noreferrer-window-name.html [ Skip Timeout ]\ncrbug.com/706350 external/wpt/html/browsers/windows/clear-window-name.https.html [ Skip Timeout ]\n\n# The wpt/html tests that are failing in some way\ncrbug.com/1317074 [ Linux ] external/wpt/html/syntax/charset/without-inheritance.html [ Failure ]\ncrbug.com/1317074 external/wpt/html/syntax/charset/after-head-after-1kb-crlf.html [ Failure ]\ncrbug.com/1317076 external/wpt/html/syntax/speculative-charset/speculative-script.tentative.html [ Failure ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/header-parsing.https.html [ Failure Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-embedder-policy/credentialless/reporting-subresource-corp.https.window.html [ Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-unsafe-none.https.html [ Skip Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-subresource-corp.https.html [ Pass Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-navigation.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/report-only-require-corp.https.html [ Failure Pass ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-same-origin.https.html [ Skip Timeout ]\ncrbug.com/1287036 [ Win10.20h2 ] external/wpt/html/cross-origin-embedder-policy/cross-origin-isolated-permission.https.html [ Timeout ]\ncrbug.com/1287036 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/multi-globals/workers-coep-report.https.html [ Failure Pass ]\ncrbug.com/1265587 external/wpt/html/user-activation/activation-trigger-pointerevent.html?pen [ Failure ]\ncrbug.com/1270351 external/wpt/html/user-activation/activation-trigger-pointerevent.html?touch [ Failure ]\ncrbug.com/1159661 external/wpt/html/interaction/focus/document-level-focus-apis/document-has-system-focus.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-serviceworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 [ Linux ] external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel.https.html [ Failure ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.https.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/location-set-and-document-open.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/animation-frames/cancel-handle-manual.html [ Skip ]\ncrbug.com/1223883 external/wpt/html/webappapis/user-prompts/newline-normalization-manual.html [ Skip ]\ncrbug.com/1222729 external/wpt/html/dom/elements/global-attributes/dir_auto-N-EN-ref.html [ Failure ]\ncrbug.com/678633 external/wpt/html/browsers/history/the-location-interface/location-protocol-setter-non-broken.html [ Failure ]\ncrbug.com/1317071 [ Mac ] virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-no-port.sub.https.html [ Failure Timeout ]\ncrbug.com/1323989 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-cross-document-traversal.html [ Pass Timeout ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_1-2.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_3-4.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_7-8.html [ Failure ]\ncrbug.com/1350975 external/wpt/html/dom/directionality/bdi-element-invalid-dir.html [ Failure ]\n\n\n# Sheriff 2020-03-06\ncrbug.com/1059262 virtual/threaded/http/tests/worklet/webexposed/global-interface-listing-paint-worklet.html [ Failure Pass ]\ncrbug.com/1059262 [ Mac ] webexposed/global-interface-listing-platform-specific.html [ Failure Pass ]\n\n# Sheriff 2020-03-08\ncrbug.com/1059645 external/wpt/pointerevents/pointerevent_coalesced_events_attributes.html [ Failure Pass ]\n\n# [virtual/...]external/wpt/web-animation test flakes\ncrbug.com/1064065 virtual/threaded/external/wpt/css/css-animations/event-dispatch.tentative.html [ Failure Pass ]\n\n# Sheriff 2020-04-01\ncrbug.com/1066122 virtual/threaded-no-composited-antialiasing/animations/events/animation-iteration-event.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-x-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-y-in-scrolling-div.html [ Failure Pass ]\n\n# Temporarily disabled for landing changes to DevTools frontend\ncrbug.com/1066579 http/tests/devtools/har-importer.js [ Failure Pass ]\n\n# COOP top navigation:\ncrbug.com/1153648 external/wpt/html/cross-origin-opener-policy/navigate-top-to-aboutblank.https.html [ Failure ]\n\n# Stale revalidation shouldn't be blocked:\ncrbug.com/1079188 external/wpt/fetch/stale-while-revalidate/revalidate-not-blocked-by-csp.html [ Timeout ]\n\n# the inspector-protocol/media tests only work in the virtual test environment.\ncrbug.com/1074129 inspector-protocol/media/media-player.js [ Timeout ]\n\n# Sheriff 2020-05-04\ncrbug.com/952717 [ Debug ] http/tests/xmlhttprequest/redirect-cross-origin-post.html [ Failure Pass ]\n\n# Sheriff 2020-05-18\ncrbug.com/1084256 [ Linux ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084256 [ Mac ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084276 [ Mac ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Crash Failure Pass ]\n\n# Temporarily disabled to land the new wasm exception handling JS API\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/exception/* [ Skip ]\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/tag/* [ Skip ]\n\n# Assorted virtual/threaded/.../wpt/scroll-animations tests\ncrbug.com/1279648 [ Mac ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-iframe.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-writing-mode-rl.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-frame-size-changed.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-inline-orientation.html [ Failure ]\ncrbug.com/1279648 [ Mac12 ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-iframe.html [ Failure ]\n\ncrbug.com/1071189 [ Debug ] editing/selection/programmatic-selection-on-mac-is-directionless.html [ Pass Timeout ]\n\n# Sheriff 2020-05-27\ncrbug.com/1046784 http/tests/devtools/elements/styles/stylesheet-tracking.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-05-29\ncrbug.com/1084637 compositing/video/video-reflection.html [ Failure Pass ]\ncrbug.com/1083362 compositing/reflections/load-video-in-reflection.html [ Failure Pass ]\ncrbug.com/1087471 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Failure Pass ]\n\n# Sheriff 2020-06-01\n# Also see crbug.com/626703, these timed-out before but now fail as well.\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure Pass ]\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure Pass ]\n\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRect.html [ Failure Pass ]\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRectPartial.html [ Failure Pass ]\n\n# Sheriff 2020-06-03\ncrbug.com/1007228 [ Mac ] external/wpt/fullscreen/api/element-request-fullscreen-and-move-to-iframe-manual.html [ Failure Pass ]\ncrbug.com/1349215 [ Mac11 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\ncrbug.com/1349215 [ Mac10.15 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\n\n# Sheriff 2020-06-06\ncrbug.com/1091843 fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2020-06-09\ncrbug.com/1093003 [ Mac ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe.sub.html [ Failure Pass ]\n\n# Sheriff 2020-06-11\ncrbug.com/1093026 [ Linux ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Failure Pass ]\n\n# Ecosystem-Infra Rotation 2020-06-15\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-stroke-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-fill-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-stroke-box.html [ Failure ]\n\n# Sheriff 2020-06-17\ncrbug.com/1092975 http/tests/inspector-protocol/target/target-expose-devtools-protocol.js [ Failure Pass ]\n\ncrbug.com/1096493 external/wpt/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https.html [ Failure ]\n\ncrbug.com/1097005 http/tests/devtools/console/console-object-preview.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-preserve-scroll.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-search.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/1093445 http/tests/loading/pdf-commit-load-callbacks.html [ Failure Pass ]\ncrbug.com/1093497 http/tests/history/client-redirect-after-push-state.html [ Failure Pass ]\n\n#Sheriff 2020-06-25\ncrbug.com/1010170 media/video-played-reset.html [ Failure Pass ]\n\n# Sheriff 2020-07-07\n# Additionally disabled on mac due to crbug.com/988248\ncrbug.com/1083302 media/controls/volumechange-muted-attribute.html [ Failure Pass ]\n\n# Sheriff 2020-07-10\n\ncrbug.com/1102167 external/wpt/fetch/redirect-navigate/preserve-fragment.html [ Pass Timeout ]\n\n# Sheriff 2020-07-13\n\ncrbug.com/1104910 fast/peerconnection/RTCPeerConnection-reload-interesting-usage.html [ Failure Pass ]\ncrbug.com/1104910 [ Mac ] editing/selection/selection-background.html [ Failure Pass ]\n\n# Sheriff 2020-07-14\n\ncrbug.com/1105271 [ Mac ] scrollbars/custom-scrollbar-adjust-on-inactive-pseudo.html [ Failure Pass ]\ncrbug.com/1105274 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile-no-url-end-to-end.js [ Failure Pass Timeout ]\n\n# This test fails due to the linked bug since input is now routed through the compositor.\ncrbug.com/1112508 fast/forms/number/number-wheel-event.html [ Failure ]\n\n# Sheriff 2020-07-20\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-time/timeline-time.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidator-invalidations.js [ Failure Pass ]\n\n# Sheriff 2020-07-22\ncrbug.com/1107722 [ Mac ] virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-script-id.js [ Failure Pass ]\n\n# Failing on Webkit Linux Leak\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\n\n# Sheriff 2020-07-23\ncrbug.com/1108786 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\ncrbug.com/1108786 [ Linux ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\n\n# Sheriff 2020-07-27\ncrbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\ncrbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Failure Pass ]\n\n# Sheriff 2020-08-03\ncrbug.com/1106429 virtual/percent-based-scrolling/max-percent-delta-page-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-05\ncrbug.com/1113050 fast/borders/border-radius-mask-video-ratio.html [ Failure Pass ]\ncrbug.com/1113127 fast/canvas/downsample-quality.html [ Crash Failure Pass ]\n\n# Sheriff 2020-08-06\ncrbug.com/1113791 [ Win ] media/video-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-17\ncrbug.com/1069546 [ Mac ] compositing/layer-creation/overflow-scroll-overlap.html [ Failure Pass ]\n\n# Unexpected demuxer success after M86 FFmpeg roll.\ncrbug.com/1117613 media/video-error-networkState.html [ Failure Timeout ]\n\n# Sheriff 2020-0-21\ncrbug.com/1120330 virtual/threaded/external/wpt/feature-policy/experimental-features/vertical-scroll-disabled-scrollbar-tentative.html [ Failure Pass ]\n\ncrbug.com/1122582 external/wpt/html/cross-origin-opener-policy/coop-csp-sandbox-navigate.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-09\ncrbug.com/1126709 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.worker.html [ Failure Pass ]\n\ncrbug.com/1136163 [ Linux ] external/wpt/pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock.html [ Failure ]\n\n# Mixed content autoupgrades make these tests not applicable, since they check for mixed content images, the tests can be removed when cleaning up pre autoupgrades mixed content code.\ncrbug.com/1042877 external/wpt/fetch/cross-origin-resource-policy/scheme-restriction.https.window.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/imageset.https.sub.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-css-image-with-reload.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-iframe.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/preload-insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-blocked.https.html [ Timeout ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-in-frame-blocked.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-reportonly.https.php [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-via-pref-image-blocked.https.html [ Failure ]\n\ncrbug.com/1046784 http/tests/devtools/sources/debugger/anonymous-script-with-source-map-breakpoint.js [ Failure Pass ]\n\n# Mixed content autoupgrades cause test to fail because test relied on http subresources to test a different origin, needs to be changed to not rely on HTTP URLs.\ncrbug.com/1042877 http/tests/security/img-crossorigin-redirect-credentials.https.html [ Failure ]\n\n# Sheriff 2020-10-09\ncrbug.com/1136687 external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture.html [ Failure Pass ]\n\ncrbug.com/1137228 [ Mac ] external/wpt/infrastructure/testdriver/click_iframe_crossorigin.sub.html [ Failure Pass ]\n\n# Rename document.featurePolicy to document.permissionsPolicy\ncrbug.com/1123116 external/wpt/permissions-policy/payment-supported-by-permissions-policy.tentative.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-all.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-self.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some-override.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-disallowed-for-all.https.sub.html [ Failure Timeout ]\n\ncrbug.com/1159445 [ Mac ] paint/invalidation/repaint-overlay/layers-overlay.html [ Failure ]\n\n#Sheriff 2020-10-21\ncrbug.com/1141206 scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\n#Sheriff 2020-10-26\ncrbug.com/1142877 [ Mac ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\ncrbug.com/1142877 [ Debug Linux ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\n\n# Sheriff 2020-11-04\ncrbug.com/1144273 http/tests/devtools/sources/debugger-ui/continue-to-location-markers-in-top-level-function.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-11-06\ncrbug.com/1146560 [ Mac ] fast/canvas/color-space/canvas-createImageBitmap-e_srgb.html [ Failure Pass ]\n\n# Sheriff 2020-11-16\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/debugger-inline-values-frames.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/reveal-execution-line.js [ Failure Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.html [ Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.worker.html [ Pass Timeout ]\ncrbug.com/1150475 fast/dom/open-and-close-by-DOM.html [ Failure Pass ]\n\n#Sheriff 2020-11-23\n# Sheriff 2021-01-22 added Timeout per crbug.com/1046784:\ncrbug.com/1149734 http/tests/devtools/sources/source-frame-toolbar-items.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-frameworks/frameworks-sourcemap.js [ Failure Pass ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/continue-to-location-markers.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/inline-scope-variables.js [ Failure Pass Timeout ]\n\n#Sheriff 2020-11-24\ncrbug.com/1087242 crbug.com/1271141 http/tests/inspector-protocol/service-worker/network-extrainfo-main-request.js [ Pass Timeout ]\ncrbug.com/1149771 [ Linux ] virtual/android/fullscreen/video-scrolled-iframe.html [ Failure Pass Timeout ]\ncrbug.com/1152532 http/tests/devtools/service-workers/user-agent-override.js [ Pass Timeout ]\n\n#Sheriff 2020-11-26\ncrbug.com/1032451 virtual/threaded-no-composited-antialiasing/animations/stability/animation-iteration-event-destroy-renderer.html [ Pass Timeout ]\ncrbug.com/931646 [ Mac ] http/tests/preload/meta-viewport-link-headers-imagesrcset.html [ Failure Pass ]\n\n# These tests will only run in the virtual test suite where the frequency\n# capping for overlay popup detection is disabled. This eliminates the need\n# for waitings in web tests to trigger a detection event.\ncrbug.com/1032681 http/tests/subresource_filter/overlay_popup_ad/* [ Skip ]\ncrbug.com/1032681 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/* [ Pass ]\n\n# DevTools roll\ncrbug.com/1144171 http/tests/devtools/report-API-errors.js [ Skip ]\n\n# Sheriff 2020-12-11\n# Flaking on Linux Trusty\ncrbug.com/1157861 http/tests/devtools/extensions/extensions-resources.js [ Failure Pass ]\ncrbug.com/1157861 http/tests/devtools/console/paintworklet-console-selector.js [ Failure Pass ]\n\n# Wpt importer Sheriff 2020-12-11\ncrbug.com/626703 [ Linux ] wpt_internal/storage/estimate-usage-details-filesystem.https.tentative.any.html [ Failure Pass ]\n\n# Wpt importer sheriff 2021-01-05\ncrbug.com/1163175 external/wpt/css/css-pseudo/first-letter-punctuation-and-space.html [ Failure ]\n\n# Sheriff 2021-01-12\ncrbug.com/1163793 http/tests/inspector-protocol/page/page-events-associated.js [ Failure Pass ]\n\n# Sheriff 2021-01-15\ncrbug.com/1167222 http/tests/websocket/multiple-connections-throttled.html [ Failure Pass ]\ncrbug.com/1167309 fast/canvas/canvas-createImageBitmap-drawImage.html [ Failure Pass ]\n\n# Sheriff 2021-01-20\ncrbug.com/1168522 external/wpt/focus/iframe-activeelement-after-focusing-out-iframes.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1050549 http/tests/devtools/console/console-correct-suggestions.js [ Failure Pass ]\n\n# Flaky test\ncrbug.com/1173439 http/tests/devtools/service-workers/service-worker-manager.js [ Pass Timeout ]\n\n# V8 roll\ncrbug.com/961059 fast/workers/worker-shared-asm-buffer.html [ Skip ]\n\ncrbug.com/1341227 [ Mac ] http/tests/workers/worker-invalid-context.html [ Skip ]\n\n# Temporarily disabled to unblock https://crrev.com/c/2979697\ncrbug.com/1222114 http/tests/devtools/console/console-dir.js [ Failure Pass ]\ncrbug.com/1222114 http/tests/devtools/console/console-format.js [ Failure Pass ]\n\ncrbug.com/1247844 external/wpt/css/css-contain/content-visibility/content-visibility-input-image.html [ Skip ]\n\n# Expected to fail with SuppressDifferentOriginSubframeJSDialogs feature disabled, tested in VirtualTestSuite\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/confirm-different-origin-frame.sub.html [ Failure ]\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-different-origin-frame.sub.html [ Failure ]\n\n# Sheriff 2021-01-27\ncrbug.com/1171331 [ Mac ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]\n\n# flaky test\ncrbug.com/1173956 http/tests/xsl/xslt-transform-with-javascript-disabled.html [ Failure Pass ]\n\n# No support for key combinations like Alt + c in testdriver.Actions for content_shell\ncrbug.com/893480 external/wpt/uievents/interface/keyboard-accesskey-click-event.html [ Timeout ]\n\n# No support for Drag-and-Drop handlers being called.\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/004.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/006.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/007.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/008.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/009.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/010.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/015.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/016.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/017.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/018.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/021.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/023.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/024.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/003.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/007.html [ Timeout ]\n\n# Sheriff 2021-02-11\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause.js [ Failure Pass ]\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause-infinite.js [ Failure Pass ]\n\n# Sheriff 2021-02-15\ncrbug.com/1177996 [ Linux ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\ncrbug.com/1178018 external/wpt/webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html [ Failure Pass ]\n\n# Expected to fail - Chrome's WebXR Depth Sensing API implementation does not currently support `gpu-optimized` usage mode.\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_dataUnavailable.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_inactiveFrame.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_incorrectUsage.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_staleView.https.html [ Failure ]\n\n# Sheriff 2021-02-17\ncrbug.com/1179117 [ Linux ] http/tests/devtools/a11y-axe-core/sources/scope-pane-a11y-test.js [ Pass Timeout ]\n\n# Sheriff 2021-02-19\ncrbug.com/1180227 [ Mac ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Crash Failure Pass ]\ncrbug.com/1180227 [ Linux ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Failure Pass ]\n\ncrbug.com/1180274 crbug.com/1046784 [ Win ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1180274 crbug.com/1046784 [ Linux ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1341227 [ Mac ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2021-02-21\ncrbug.com/1180491 [ Linux ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\ncrbug.com/1180491 [ Linux ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-02-24\ncrbug.com/1181857 external/wpt/webaudio/the-audio-api/the-analysernode-interface/test-analyser-output.html [ Failure Pass ]\n\n# Sheriff 2021-02-25\ncrbug.com/1182682 [ Linux ] http/tests/devtools/service-workers/service-workers-view.js [ Failure Pass ]\n\n# Sheriff 2021-03-08\ncrbug.com/1092462 [ Linux ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/1092462 [ Linux ] media/video-seek-past-end-paused.html [ Failure Pass ]\n\ncrbug.com/1185051 fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob-worker.html [ Failure Pass ]\n\n# Expect failure for unimplemented canvas color object input\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.transparency.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.transparency.html [ Failure ]\n\n# Sheriff 2021-03-17\ncrbug.com/1072022 http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change.html [ Pass Timeout ]\n\n# Sheriff 2021-03-19\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints.js [ Failure Pass Timeout ]\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.js [ Failure Pass Timeout ]\ncrbug.com/1190176 [ Linux ] fast/peerconnection/RTCPeerConnection-addMultipleTransceivers.html [ Crash Failure Pass ]\n\ncrbug.com/1176039 [ Mac ] virtual/stable/media/stable/video-object-fit-stable.html [ Failure Pass ]\n\ncrbug.com/1190905 [ Mac ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Linux ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Win ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\n\n# Sheriff 2021-03-31\n# Failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-01\n# More failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-06\ncrbug.com/1032451 [ Linux ] virtual/threaded/animations/stability/animation-iteration-event-destroy-renderer.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-04-07\ncrbug.com/1196620 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video-sibling.html [ Failure Pass ]\n\n# WebTransport tests should eventually run when the WebTransport WPT server is added.\ncrbug.com/1201569 external/wpt/webtransport/* [ Skip ]\ncrbug.com/1201569 wpt_internal/webtransport/* [ Skip ]\n# WebTransport server infra tests pass on python3 but fail on python2.\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.sharedworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.worker.html [ Failure Pass ]\n\ncrbug.com/1194958 fast/events/mouse-event-buttons-attribute.html [ Failure Pass ]\n\n# Sheriff 2021-04-08\ncrbug.com/1197087 external/wpt/web-animations/interfaces/Animation/finished.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 virtual/threaded/external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\n\n# Sheriff 2021-04-09\ncrbug.com/1197528 pointer-lock/pointerlockchange-pointerlockerror-events.html [ Failure Pass ]\n\ncrbug.com/1195295 fast/events/touch/multi-touch-timestamp.html [ Failure Pass ]\n\ncrbug.com/1196745 [ Mac10.15 ] editing/selection/editable-links.html [ Skip ]\n\n# Is fixed by PlzDedicatedWorker.\ncrbug.com/1060837 external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Timeout ]\ncrbug.com/1060837 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Pass ]\n\ncrbug.com/1143102 virtual/plz-dedicated-worker/http/tests/inspector-protocol/fetch/dedicated-worker-main-script.js [ Skip ]\n\n# These timeout because COEP reporting to a worker is not implemented.\ncrbug.com/1197041 external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\ncrbug.com/1197041 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\n\n# Sheriff 2021-04-12\n\ncrbug.com/1193979 [ Mac ] fast/events/tabindex-focus-blur-all.html [ Failure Pass ]\ncrbug.com/1196201 fast/events/mouse-event-source-device-event-sender.html [ Failure Pass ]\n\n# Sheriff 2021-04-13\ncrbug.com/1198698 external/wpt/clear-site-data/storage.https.html [ Pass Timeout ]\n\n# Sheriff 2021-04-14\n\n# Sheriff 2021-04-15\ncrbug.com/1196118 plugins/mouse-move-over-plugin-in-frame.html [ Failure Pass ]\ncrbug.com/1199528 http/tests/inspector-protocol/css/css-edit-redirected-css.js [ Failure Pass ]\ncrbug.com/1196317 [ Mac ] scrollbars/custom-scrollbar-thumb-width-changed-on-inactive-pseudo.html [ Failure Pass ]\n\n# Sheriff 2021-04-21\ncrbug.com/1201225 external/wpt/pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.html [ Failure Pass Timeout ]\ncrbug.com/1201346 http/tests/origin_trials/webexposed/bfcache-experiment-http-header-origin-trial.php [ Failure Pass ]\ncrbug.com/1201365 virtual/portals/http/tests/inspector-protocol/portals/device-emulation-portals.js [ Pass Timeout ]\n\n# Sheriff 2021-04-22\ncrbug.com/1191990 http/tests/serviceworker/clients-openwindow.html [ Failure Pass ]\n\n# Sheriff 2021-04-23\n\n# Image pixels are sometimes different on Fuchsia.\ncrbug.com/1201123 [ Fuchsia ] tables/mozilla/bugs/bug1188.html [ Failure Pass ]\n\n# Sheriff 2021-04-26\n\n# Sheriff 2021-04-29\ncrbug.com/1203963 [ Mac10.14 ] external/wpt/webusb/idlharness.https.any.html [ Failure Pass Timeout ]\n\n# Appears to be timing out even when marked as Slow.\ncrbug.com/1205184 [ Mac11 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\ncrbug.com/1205184 [ Mac12 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\n\n# Sheriff 2021-05-03\ncrbug.com/1205012 external/wpt/html/cross-origin-opener-policy/reporting/access-reporting/reporting-observer.html [ Pass Timeout ]\ncrbug.com/1093041 fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass ]\ncrbug.com/1093041 virtual/gpu/fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-05-10\n\n# Sheriff 2021-05-04\ncrbug.com/1205659 [ Mac ] external/wpt/IndexedDB/key-generators/reading-autoincrement-indexes.any.worker.html [ Pass Timeout ]\n\n# Blink_web_tests 2021-05-06\ncrbug.com/1205669 [ Mac10.13 ] virtual/threaded/external/wpt/animation-worklet/idlharness.any.worker.html [ Failure ]\n\n# Sheriff 2021-05-07\n# Some plzServiceWorker and plzDedicatedWorker singled out from generic sheriff rounds above\n\n# Sheriff 2021-05-10\ncrbug.com/1207709 [ Mac10.13 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Failure Pass Timeout ]\n\n# For SkiaRenderer on MacOS\ncrbug.com/1208173 [ Mac ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] css3/filters/backdrop-filter-boundary.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-rotation.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\n\n# Fix to unblock wpt-importer\ncrbug.com/1209223 [ Mac ] external/wpt/url/a-element.html [ Pass Timeout ]\ncrbug.com/1209223 external/wpt/url/url-constructor.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2021-05-17\ncrbug.com/1210199 http/tests/devtools/elements/elements-panel-restore-selection-when-node-comes-later.js [ Failure Pass ]\ncrbug.com/1199522 http/tests/devtools/layers/layers-3d-view-hit-testing.js [ Failure Pass ]\n\n# Failing css-transforms-2 web platform tests.\ncrbug.com/847356 external/wpt/css/css-transforms/transform-box/view-box-mutation-001.html [ Failure ]\n\n# Started failing after rolling new version of check-layout-th.js\ncss3/flexbox/perpendicular-writing-modes-inside-flex-item.html [ Failure ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3099011\ncrbug.com/1199701 http/tests/devtools/console/console-big-array.js [ Skip ]\n\n# Sheriff 2021-11-15\ncrbug.com/1270362 http/tests/devtools/sources/debugger-ui/debugger-inline-values.js [ Failure Pass Timeout ]\n\n# The wpt_flags=h2 variants of these tests fail, but the other variants pass. We\n# can't handle this difference with -expected.txt files, so we have to list them\n# here.\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-2999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-server-initiated-close.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-server-initiated-close.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-extensions-empty.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-string.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-65K-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-65K-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-float64.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float64.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-unicode-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/extended-payload-length.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/001.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/002.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/005.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/events/018.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\n\n# Sheriff on 2021-05-26\ncrbug.com/1213322 [ Mac ] external/wpt/css/css-values/minmax-percentage-serialize.html [ Failure Pass ]\ncrbug.com/1213322 [ Mac ] external/wpt/html/browsers/the-window-object/named-access-on-the-window-object/window-named-properties.html [ Failure Pass ]\n\n# Do not retry slow tests that also timeouts\ncrbug.com/1210687 [ Mac10.15 ] fast/events/open-window-from-another-frame.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] storage/websql/sql-error-codes.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] external/wpt/html/user-activation/propagation-crossorigin.sub.html [ Pass Timeout ]\n\n# Sheriff 2021-06-02\ncrbug.com/1215575 [ Mac11 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215575 [ Mac12 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215584 [ Mac11 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1215584 [ Mac12 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\n\n# Fail with field trial testing config.\ncrbug.com/1219767 [ Linux ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure ]\n\n# Sheriff 2021-06-03\ncrbug.com/1185121 fast/scroll-snap/animate-fling-to-snap-points-1.html [ Failure Pass ]\ncrbug.com/1176162 http/tests/devtools/screen-orientation-override.js [ Failure Pass ]\ncrbug.com/1215949 external/wpt/pointerevents/pointerevent_iframe-touch-action-none_touch.html [ Pass Timeout ]\ncrbug.com/1216139 http/tests/devtools/bfcache/bfcache-elements-update.js [ Failure Pass ]\n\n# Sheriff 2021-06-10\ncrbug.com/1177996 [ Mac10.15 ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\n\n# CSS Highlight API painting issues related to general CSS highlight\n# pseudo-elements painting\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html [ Failure ]\ncrbug.com/1147859 [ Linux ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004-2.html [ Failure ]\ncrbug.com/1147859 [ Linux ] paint/custom-highlight-only-inheritance.html [ Failure ]\ncrbug.com/1147859 [ Linux ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\ncrbug.com/1147859 [ Mac ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\n\n\n# Green Mac11 Test\ncrbug.com/1201406 [ Mac11 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 [ Mac12 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 http/tests/credentialmanagement/publickeycredential-same-origin-with-ancestors.html [ Crash Pass Timeout ]\n\n# Sheriff 2021-06-14\ncrbug.com/1219499 external/wpt/websockets/Create-blocked-port.any.html?wpt_flags=h2 [ Failure Pass Timeout ]\ncrbug.com/1219499 [ Win ] external/wpt/websockets/Create-blocked-port.any.html?wss [ Pass Timeout ]\n\n# Sheriff 2021-06-15\ncrbug.com/1220007 [ Linux ] fullscreen/full-screen-iframe-allowed-video.html [ Failure Pass Timeout ]\n\n# Sheriff\ncrbug.com/1222097 external/wpt/mediacapture-image/detached-HTMLCanvasElement.html [ Skip ]\ncrbug.com/1222097 http/tests/canvas/captureStream-on-detached-canvas.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/blob.https.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/worker-inheritance.sub.https.html [ Skip ]\ncrbug.com/1222097 external/wpt/uievents/order-of-events/mouse-events/mouseover-out.html [ Skip ]\n\n# Sheriff 2021-06-25\n# Flaky on Webkit Linux Leak\ncrbug.com/1223601 [ Linux ] fast/scrolling/autoscroll-latch-clicked-node-if-parent-unscrollable.html [ Failure Pass ]\ncrbug.com/1223601 [ Linux ] fast/scrolling/reset-scroll-in-onscroll.html [ Failure Pass ]\n\n# Sheriff 2021-06-29\n# Flaky on Mac11 Tests\ncrbug.com/1197464 [ Mac ] plugins/refcount-leaks.html [ Failure Pass ]\n\n# Sheriff 2021-07-05\ncrbug.com/1226445 [ Mac ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-07-07\n\n# Sheriff 2021-07-12\ncrbug.com/1228432 [ Linux ] external/wpt/video-rvfc/request-video-frame-callback-before-xr-session.https.html [ Pass Timeout ]\n\n# Depends on fixing WPT cross-origin iframe click flake in crbug.com/1066891.\ncrbug.com/1227710 external/wpt/bluetooth/requestDevice/cross-origin-iframe.sub.https.window.html [ Failure Pass ]\n\n# Cross-origin WebAssembly module sharing is getting deprecated.\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-similar-but-cross-origin-success.sub.html [ Skip ]\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-domain-success.sub.html [ Skip ]\n\n# Sheriff 2021-07-13\n\n# A number of http/tests/inspector-protocol/network tests are flaky.\ncrbug.com/1196027 http/tests/inspector-protocol/network/request-interception.js [ Failure Pass ]\ncrbug.com/1228246 http/tests/inspector-protocol/network/request-interception-frame-id.js [ Failure Pass Timeout ]\n\n# linux_layout_tests_layout_ng_disabled needs its own baselines.\ncrbug.com/1231699 [ Linux ] fast/borders/border-inner-bleed.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video-shadow.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/reflections/opacity-reflection-transform.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/focus-ring.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/transformed-outlines.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] virtual/text-antialias/color-emoji.html [ Failure Pass ]\n\n# Other devtools flaky tests outside of http/tests/inspector-protocol/network.\ncrbug.com/1228261 http/tests/inspector-protocol/browser-grant-permissions.js [ Failure Pass Timeout ]\n\n# Flakes that might be caused or aggravated by PlzServiceWorker\ncrbug.com/996511 external/wpt/service-workers/cache-storage/window/cache-abort.https.html [ Crash Failure Pass ]\ncrbug.com/996511 external/wpt/service-workers/service-worker/getregistrations.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-07-14\ncrbug.com/1229039 [ Linux ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\ncrbug.com/1229039 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\n\n# Test fails due to more accurate size reporting in heap snapshots.\ncrbug.com/1229212 inspector-protocol/heap-profiler/heap-samples-in-snapshot.js [ Failure ]\n\n# Sheriff 2021-07-15\ncrbug.com/1229666 external/wpt/html/semantics/forms/form-submission-0/urlencoded2.window.html [ Pass Timeout ]\ncrbug.com/1093027 http/tests/credentialmanagement/credentialscontainer-create-with-virtual-authenticator.html [ Crash Failure Pass Timeout ]\n# The next test was originally skipped on mac for lack of support (crbug.com/613672). It is now skipped everywhere due to flakiness.\ncrbug.com/1229708 fast/events/pointerevents/pointer-event-in-slop-region.html [ Skip ]\n# pause-on-elements-panel.js is marked as Slow, so it's required to also be Skipped due to it Timing out.\ncrbug.com/1229725 http/tests/devtools/sources/debugger-pause/pause-on-elements-panel.js [ Crash Failure Pass Timeout ]\ncrbug.com/1085647 external/wpt/pointerevents/compat/pointerevent_mouse-pointer-preventdefault.html [ Pass Timeout ]\ncrbug.com/1087232 http/tests/devtools/network/network-worker-fetch-blocked.js [ Failure Pass ]\ncrbug.com/1229802 fast/events/pointerevents/multi-touch-events.html [ Failure Pass ]\ncrbug.com/1181886 external/wpt/pointerevents/pointerevent_movementxy.html?* [ Failure Pass Timeout ]\n\n# Sheriff 2021-07-21\ncrbug.com/1231431 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure ]\n\n# Sheriff 2021-07-22\ncrbug.com/1222097 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]\ncrbug.com/1231989 [ Linux ] external/wpt/html/cross-origin-embedder-policy/shared-workers.https.html [ Failure Pass ]\n\n# Sheriff 2021-07-28\ncrbug.com/1234057 external/wpt/css/css-paint-api/no-op-animation.https.html [ Failure Pass ]\n\n# Temporarily disabling progress based worklet animation tests.\ncrbug.com/1238130 animations/animationworklet/playback-rate-scroll-timeline-accelerated-property.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dispose.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dynamic-update.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-compositable.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-scrollable.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/inactive-timeline.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/scroll-timeline-writing-modes.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-creation.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-root-scroller.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline.https.html [ Timeout ]\n\n# Sheriff 2021-07-29\ncrbug.com/626703 http/tests/security/cross-frame-access-put.html [ Failure Pass ]\n\n# Sheriff 2021-07-30\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio+video.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-video.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-02\ncrbug.com/1215390 [ Linux ] external/wpt/pointerevents/pointerevent_pointerId_scope.html [ Failure Pass ]\n\n# Sheriff 2021-08-12\ncrbug.com/1237640 http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Pass Timeout ]\ncrbug.com/1239175 http/tests/navigation/same-and-different-back.html [ Failure Pass ]\ncrbug.com/1239164 http/tests/inspector-protocol/network/navigate-iframe-in2in.js [ Failure Pass ]\ncrbug.com/1237909 external/wpt/webrtc-svc/RTCRtpParameters-scalability.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-19\ncrbug.com/1234315 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Failure Timeout ]\n\n# Sheriff 2021-08-20\ncrbug.com/1194498 http/tests/misc/iframe-script-modify-attr.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-23\ncrbug.com/1242243 external/wpt/css/css-paint-api/parse-input-arguments-018.https.html [ Crash Failure Pass ]\n\n# Sheriff 2021-08-25\ncrbug.com/1243128 [ Win ] external/wpt/web-share/disabled-by-permissions-policy.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-26\ncrbug.com/1243707 [ Debug Linux ] http/tests/inspector-protocol/target/auto-attach-related-sw.js [ Crash Pass ]\n\n# Sheriff 2021-09-03\ncrbug.com/1246351 http/tests/misc/scroll-cross-origin-iframes-scrollbar.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-09-06\n# All of these suffer from the same problem of of a\n# DCHECK(!snapshot.drawsNothing()) failing on Macs:\n# Also reported as failing via crbug.com/1233766\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Crash Failure Pass Timeout ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-keyframes.https.html [ Crash Failure Pass ]\n# Previously reported as fialing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-immediately.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-timing.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/1233766 on Mac11:\n# Previously reported as failing via crbug.com/626703 on Mac10.15:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-2.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-cancel.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-before-start.https.html [ Crash Failure Pass ]\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html [ Crash Failure Pass ]\n\n# [CompositeClipPathAnimations] failing test\ncrbug.com/1249071 virtual/composite-clip-path-animation/external/wpt/css/css-masking/clip-path/animations/clip-path-animation-filter.html [ Crash Failure Pass ]\n\n# Following tests fail on mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/image-src-change.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-oversized-images-forced-layout.php [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/transformed-document-element.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/codec-tests/webm/webm-decode.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-detune-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-playbackrate-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Oscillator/no-dezippering.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/color/color-picker-escape-cancellation-revert.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/dom/geometry-interfaces-dom-matrix-rotate.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-021.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-025.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-004.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Failures that surfaced on the mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\n\n# Flakes that surfaced on the mac12 and mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/service-worker-controlled-after-restore.https.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12 ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe-in-multicol.sub.html [ Failure Pass ]\n\n# Sheriff 2022-07-04\ncrbug.com/1341689 [ Linux ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Following tests timeout on mac11-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Timeout ]\n\n# Flaky tests in mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/12-55.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/color-profile-image-filter-all.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\n\n# mac-arm CI 10-01-2021\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/opened-document-security-origin-resets-on-navigation.html [ Timeout ]\n\n# mac-arm CI 10-05-2021\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/no-alloc-direct-call/fast/canvas/canvas-lost-gpu-context.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] svg/animations/animate-setcurrenttime.html [ Crash ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\n\n#devtool flaky test crbug.com/1046784\ncrbug.com/1046784 [ Mac12 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2021-09-16\ncrbug.com/1250457 [ Mac ] storage/websql/open-database-set-empty-version.html [ Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/portals/http/tests/devtools/portals/portals-console.js [ Failure Pass Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/prefer_compositing_to_lcd_text/scrollbars/custom-scrollbar-inactive-pseudo.html [ Timeout ]\n\ncrbug.com/1249622 external/wpt/largest-contentful-paint/initially-invisible-images.html [ Failure ]\ncrbug.com/1249622 virtual/initially-invisible-images-lcp/external/wpt/largest-contentful-paint/initially-invisible-images.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Pass ]\n\n# FileSystemHandle::move() is temporarily disabled outside of the Origin Private File System\ncrbug.com/1247850 external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Linux ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Mac11 ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Win ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\n# FileSystemHandle::move() is temporarily disabled for directory handles\ncrbug.com/1250534 external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\n\n# crbug.com/1293591: Many virtual/gpu-rasterization/images/* tests are flaky\ncrbug.com/1293591 images/color-profile-animate-rotate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-animate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-cross-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-repeat.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-space.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-border-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-clip.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-group.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-iframe.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas-pattern.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-shape.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-mask-image-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-object.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg-fill-text.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/jpeg-with-color-profile.html [ Failure Pass ]\n\n# crbug.com/1339051: some ref tests generate output with minor differences.\ncrbug.com/1339051 [ Linux ] compositing/text-on-scaled-layer.html [ Failure ]\ncrbug.com/1339051 [ Linux ] external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] fast/forms/color/color-picker-appearance-zoom125.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/backface-visibility-interop/external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/content-with-transform-new-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/object-view-box-old-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/web-animations-api.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/oopr-canvas2d/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces.html [ Failure ]\n\n# Sheriff 2021-09-27\n# Revisit once crbug.com/1123886 is addressed.\n# Likely has the same root cause for crashes.\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/930462 external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\ncrbug.com/930462 virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\n\n# Sheriff 2021-09-29\n\n# Sheriff 2021-10-01\ncrbug.com/1255221 http/tests/devtools/elements/styles-4/svg-style.js [ Failure Pass ]\n\n# Skip devtools test hitting an unexpected tracing infrastructure exception 2021-10-04\ncrbug.com/1255679 http/tests/devtools/service-workers/service-workers-wasm-test.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-10-05\ncrbug.com/1256755 http/tests/xmlhttprequest/cross-origin-unsupported-url.html [ Failure Pass ]\ncrbug.com/1256770 [ Mac ] svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr.html [ Failure Pass ]\n\n# Disabled to allow devtools-frontend roll\ncrbug.com/1258618 virtual/portals/http/tests/devtools/portals/portals-elements-nesting-after-adoption.js [ Skip ]\n\n# Sheriff 2021-10-06\ncrbug.com/1257298 svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ Failure Pass ]\n\n# Sheriff 2021-10-12\ncrbug.com/1259133 [ Mac10.14 ] external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\ncrbug.com/1259133 [ Mac10.14 ] virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\n\n# Data URL navigation within Fenced Frames currently crashed in the MPArch implementation.\ncrbug.com/1243568 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/window-data-url-navigation.https.html [ Timeout ]\n\n# Fragment navigations are treated as same-document in ShadowDOM because it doesn't distinguish embedder-initiated navigations.\ncrbug.com/1262022 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/fragment-navigation.https.html [ Timeout ]\n\n# Sheriff 2021-10-15, 2021-12-07\ncrbug.com/1256763 [ Win ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Mac ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Linux ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\n\ncrbug.com/1260393 [ Mac ] virtual/oopr-canvas2d/fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2021-10-19\ncrbug.com/1256763 [ Linux ] images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/1259277 fast/events/message-port-multi.html [ Skip ]\n\n# Sheriff 2021-10-26\ncrbug.com/1263732 http/tests/devtools/tracing/timeline-paint/timeline-paint-image.js [ Failure Pass ]\n\n# Sheriff 2021-10-29\ncrbug.com/1264670 [ Linux ] http/tests/devtools/resource-tree/resource-tree-frame-add.js [ Failure Pass ]\n\n# TODO(https://crbug.com/1265311): Make the test behave the same way on all platforms\ncrbug.com/1265311 http/tests/navigation/location-change-repeated-from-blank.html [ Failure Pass ]\n\n# Sheriff 2021-11-03\ncrbug.com/1266221 [ Mac11-arm64 ] virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemFileHandle-create-sync-access-handle.https.tentative.window.html [ Failure Pass ]\n\n# Sheriff 2021-11-09\ncrbug.com/1269535 http/tests/misc/resource-timing-sizes-multipart.html [ Failure Pass Timeout ]\n\n# This test is flaky on all platforms\ncrbug.com/1191846 [ Mac11 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Mac12 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass ]\n\n# Sheriff 2021-11-10\ncrbug.com/1268963 [ Linux ] external/wpt/resource-timing/object-not-found-after-TAO-cross-origin-redirect.html [ Failure Pass ]\n\n# Sheriff 2021-11-12\ncrbug.com/1268594 [ Linux ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Mac ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Win ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\n\n# Security OWP fixit week\ncrbug.com/1270355 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/009.html [ Timeout ]\n\n# Sheriff 2021-11-18\ncrbug.com/1180993 external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-19\ncrbug.com/1186771 [ Mac ] fast/scroll-snap/snaps-after-scrollbar-scrolling-track.html [ Crash ]\ncrbug.com/894077 [ Linux ] virtual/android/fullscreen/video-fixed-background.html [ Failure Pass ]\ncrbug.com/1271336 external/wpt/native-io/detach_iframe_during_open.https.window.html [ Crash Pass ]\n\n# Sheriff 2021-11-22\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-test.js [ Failure Pass Timeout ]\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/stale-revalidation-test.js [ Failure Pass Timeout ]\ncrbug.com/1272380 http/tests/devtools/bindings/bindings-multiple-frames.js [ Failure Pass ]\n\n# Flaky on mac\ncrbug.com/1263709 [ Mac ] http/tests/devtools/elements/node-xpath.js [ Failure ]\n\n# Flaky on Mac and Windows\ncrbug.com/1272199 external/wpt/websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1272203 external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\n\n# Times out flakily on all platforms. Previously marked slow, crbug.com/874695.\ncrbug.com/1272801 http/tests/permissions/chromium/test-request-sharedworker.html [ Pass Timeout ]\n\n# Flaky with setTimeout without clamp\ncrbug.com/1272955 http/tests/devtools/extensions/extensions-timeline-api.js [ Failure Pass ]\ncrbug.com/1302309 external/wpt/streams/transferable/writable-stream.html [ Failure Pass ]\n\n# Test is very flaky (score of 223).\ncrbug.com/1274919 http/tests/inspector-protocol/page/consecutive-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-23\ncrbug.com/1046784 http/tests/devtools/tracing/timeline-receive-response-event.js [ Failure Pass ]\n\n# Sheriff 2021-11-24\ncrbug.com/1273541 fast/block/float/float-on-clean-line-subsequently-dirtied.html [ Failure Pass ]\n\n# Sheriff 2021-11-26\ncrbug.com/1201879 [ Linux ] http/tests/inspector-protocol/issues/mixed-content-issue-creation-js-within-oopif.js [ Failure Pass Timeout ]\ncrbug.com/1274171 inspector-protocol/debugger/debugger-setTimeout-sourceUrl-dedicated-worker-loop.js [ Pass Timeout ]\ncrbug.com/1271485 http/tests/inspector-protocol/network/load-network-resource-different-frame-cookie.js [ Failure Pass Timeout ]\ncrbug.com/1228803 [ Linux ] fast/peerconnection/RTCPeerConnection-garbagecollected.html [ Failure Pass ]\n\n# Sheriff 2021-11-29\ncrbug.com/1274458 external/wpt/audio-output/selectAudioOutput-permissions-policy.https.sub.html [ Failure Pass ]\ncrbug.com/1239485 [ Mac ] fast/frames/iframe-plugin-load-remove-document-crash.html [ Failure Pass ]\n\n# Sheriff 2021-12-01\ncrbug.com/1275658 http/tests/misc/script-after-slow-stylesheet-removed.html [ Failure Pass ]\ncrbug.com/1275716 [ Mac ] fast/forms/text-control-intrinsic-widths.html [ Failure Pass ]\n\n# Sheriff 2021-12-02\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-top-left.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-screenx-screeny.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-innerheight-innerwidth.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-width-height.html [ Skip ]\ncrbug.com/1275967 [ Linux ] external/wpt/permissions-policy/permissions-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1275944 [ Mac ] http/tests/devtools/sources/debugger-ui/reveal-not-skipped.js [ Failure Pass ]\ncrbug.com/1276207 virtual/gpu-rasterization/images/color-profile-image-object-fit.html [ Failure Pass ]\ncrbug.com/1276208 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-fillPath-alpha-shadow.html [ Pass Timeout ]\ncrbug.com/1276290 [ Mac ] wpt_internal/mediastream/mediastreamtrackprocessor-transfer-to-worker.html [ Skip ]\n\n# Sheriff 2021-12-03\n\ncrbug.com/1277973 http/tests/xmlhttprequest/uri-resolution-opera-open-007.html [ Crash Failure Pass ]\n\n# Sheriff 2021-12-13\ncrbug.com/1279586 [ Mac ] external/wpt/IndexedDB/idbobjectstore-rename-abort.html [ Failure ]\n\ncrbug.com/1159463 crbug.com/1278570 [ Linux ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac11 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac12 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\n\n# Sheriff 2021-12-21\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.canvas.source-out.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.clip.xor.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.operation.darker.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.uncovered.pattern.source-in.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.null.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.wrongtype.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.clearRect.path.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.fillRect.zero.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large-manual.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-4.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.hsl-5.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.gradient.object.current.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.round.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.square.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.miter.obtuse.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/fill-and-stroke-styles/2d.fillStyle.parse.current.notrendered.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-drawImage-offscreenCanvas.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/pixel-manipulation/2d.imageData.get.order.cols.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/text-styles/2d.text.font.parse.tiny.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/transformations/2d.transformation.transform.multiply.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-ImageBitmap-cloned.html [ Pass Timeout ]\ncrbug.com/1281782 virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-video.html [ Skip ]\ncrbug.com/1281792 external/wpt/event-timing/min-duration-threshold.html [ Failure Pass ]\n\ncrbug.com/1285857 plugins/plugin-destroyed-enumerate.html [ Failure Pass ]\n\n# Sheriff 2021-12-22\ncrbug.com/1179857 [ Linux ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Mac10.13 ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Win ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Pass Timeout ]\n\n# Sheriff 2021-12-22\ncrbug.com/1283295 [ Mac ] fast/text-autosizing/hackernews-comments.html [ Failure Pass ]\n\n# Sheriff 2021-12-30\ncrbug.com/1229096 [ Win ] fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# Sheriff 2022-01-04\ncrbug.com/1283865 external/wpt/webmessaging/without-ports/020.html [ Failure Pass ]\n\n# Sheriff 2022-01-05\ncrbug.com/1284572 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-module-test.js [ Failure Pass Timeout ]\n\n# Incomplete support for mouse wheel in test_driver.\ncrbug.com/1285411 external/wpt/css/css-scroll-snap/input/mouse-wheel.html [ Timeout ]\n\n# Sheriff 2022-01-07\ncrbug.com/1285438 fast/layers/clip-rects-transformed.html [ Failure Pass ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-browser-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-subresource.js [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-01-12\ncrbug.com/1286619 [ Mac ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\ncrbug.com/1225606 virtual/sanitizer-api-namespaces/external/wpt/sanitizer-api/sanitizer-names.https.tentative.html [ Failure ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3657449\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-navigate.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-main-frame-navigated.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-navigator-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-bindings-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-navigator-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger/network-uisourcecode-provider.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-panel.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-with-same-source-url.js [ Failure Pass ]\n\n# Sheriff 2022-01-17\ncrbug.com/1233938 http/tests/notifications/click-shared-worker.html [ Pass Timeout ]\n# Temporarily disable test to allow fixing of devtools path escaping\ncrbug.com/1094436 http/tests/devtools/overrides/project-added-with-existing-files-bind.js [ Failure Timeout ]\ncrbug.com/1256763 virtual/gpu-rasterization/images/color-profile-background-image-cover.html [ Failure Pass ]\n\n# Sheriff 2022-01-18\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/redirect-loop-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/window/thorough/cors-preflight2-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html [ Pass Timeout ]\n\n# Flakiness of WIP MediaStreamTrack on workers.\ncrbug.com/1290767 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-pipes-data-in-worker.https.html [ Crash Pass ]\ncrbug.com/1290976 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-shared-worker.https.html [ Crash Pass ]\ncrbug.com/1291850 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-service-worker.https.html [ Crash Pass ]\n\n# Temporarily disable tests to land branded types related changes.\ncrbug.com/1253323 [ Win ] http/tests/devtools/sources/debugger-breakpoints/nodejs-set-breakpoint.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/persistence/automapping-urlencoded-paths.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/sources/debugger/navigator-view.js [ Skip ]\n\n# Sheriff 2022-01-26\ncrbug.com/1290978 [ Win ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Mac ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Linux ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-02-01\n# Flaky test on Mac\ncrbug.com/1292843 [ Mac ] external/wpt/css/css-transforms/animation/perspective-origin-interpolation.html [ Failure Pass ]\ncrbug.com/1292844 [ Mac ] external/wpt/css/css-writing-modes/alt-display-vertical-001-manual.html [ Failure Pass ]\ncrbug.com/1292865 [ Mac ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Failure Pass ]\ncrbug.com/1292869 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/audioparam-cancel-and-hold.html [ Failure Pass ]\ncrbug.com/1292871 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/k-rate-dynamics-compressor-connections.html [ Failure Pass ]\ncrbug.com/1292873 [ Mac ] html/selectmenu/selectmenu-slot-warning-button.html [ Failure Pass ]\ncrbug.com/1292874 [ Mac ] html/selectmenu/selectmenu-slot-warning-listbox.html [ Failure Pass ]\ncrbug.com/1292876 [ Mac ] http/tests/devtools/console/console-time.js [ Failure Pass ]\n\ncrbug.com/1038139 [ Linux ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\ncrbug.com/1038139 [ Mac ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\ncrbug.com/1309664 virtual/no-forced-frame-updates/external/wpt/html/dom/render-blocking/render-blocked-apis-by-preload-link.tentative.html [ Failure ]\n\n# Sheriff 2022-02-08\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-fixed-scrolling.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-opacity-overlay.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/video/video-controls-squashing.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/controls/video-overlay-cast-light-rendering.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/2-comp.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-canvas.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/motion-jpeg-single-frame.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-jpeg-with-adobe-marker-only.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/webp-color-profile-lossless.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image-profile-match.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-colorspace-hw.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-hw.html [ Failure ]\n\n# Sheriff 2022-02-09\ncrbug.com/1295707 http/tests/devtools/elements/elements-treeoutline-copy.js [ Failure Pass ]\n\n# Disable to skip performance test caused by potential O(n^2) problem in AXObjectCacheImpl::ChildrenChanged\ncrbug.com/1293714 external/wpt/css/selectors/invalidation/has-complexity.html [ Skip ]\n\n# Sheriff 2022-02-16\ncrbug.com/1297416 [ Mac Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Linux Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Release Win10.20h2 ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\n\n# Sheriff 2022-02-22\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker/thorough/redirect-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/window/thorough/cors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/workers/thorough/cookie-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299948 [ Mac ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]\ncrbug.com/1299972 [ Linux ] screen_orientation/screenorientation-unsupported-no-crash.html [ Failure Pass Timeout ]\n\n# Disable flaky test for further investigation\ncrbug.com/1229801 http/tests/devtools/elements/css-rule-hover-highlights-selectors.js [ Failure Pass ]\n\n# Sheriff 2022-03-03\ncrbug.com/1302571 virtual/threaded/http/tests/devtools/isolated-code-cache/cross-origin-test.js [ Skip ]\n\n# Sheriff 2022-03-04\ncrbug.com/1302856 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-png-with-cmyk-color-profile.html [ Failure Pass ]\n\ncrbug.com/1298836 external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\ncrbug.com/1298836 virtual/plz-dedicated-worker/external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\n\n# Anonymous iframe:\n#------------------\n#\n# Anonymous iframe > CacheStorage:\n# From two same-origin-different-partition context, the second `cache.put`\n# request hangs indefinitely.\ncrbug.com/1285275 external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\n\n# Sheriff 2022-03-10\ncrbug.com/1304956 storage/indexeddb/dont-wedge.html [ Failure Pass ]\n\n# Sheriff 2022-03-15\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/force-load-at-top.html [ Pass Timeout ]\ncrbug.com/1269534 fast/spatial-navigation/snav-zero-margin-content.html [ Failure Pass ]\ncrbug.com/1295980 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1295980 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1298633 http/tests/inspector-protocol/network/cross-origin-isolation/coep-load-error-reporting-worker.js [ Pass Timeout ]\n\n# Sheriff 2022-03-18\ncrbug.com/1290040 external/wpt/service-workers/service-worker/same-site-cookies.https.html [ Skip ]\n\n# WebAudio flaky timeout (crbug.com/1307741)\ncrbug.com/1307741 [ Mac ] external/wpt/webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-routing.html [ Timeout ]\ncrbug.com/1307741 webaudio/AudioParam/audioparam-k-rate.html [ Timeout ]\n\n# WebAudio internals flaky GC (crbug.com/1312164)\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-wrapper.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/scriptprocessornode-premature-death.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-close.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-gc.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-gc.html [ Skip ]\n\n# Sheriff 2022-03-21: More flaky tests.\ncrbug.com/1272376 [ Mac ] plugins/plugin-document-back-forward.html [ Failure Pass ]\n\n# Tests that need updates due to rounding math in layout\ncrbug.com/1309975 http/tests/devtools/console/console-viewport-indices.js [ Failure ]\ncrbug.com/1309975 http/tests/devtools/console/viewport-testing/console-stick-to-bottom-expand-object.js [ Failure ]\n\n# Sheriff 2022-03-23: More flaky tests.\ncrbug.com/1309483 [ Win ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1309633 [ Mac ] external/wpt/FileAPI/url/url-lifetime.html [ Failure ]\n\n# Sheriff 2022-03-24\ncrbug.com/1309756 http/tests/images/force-reload.html [ Skip ]\ncrbug.com/1309756 [ Mac11-arm64 ] http/tests/images/force-reload-image-document.html [ Skip ]\n\n# Sheriff 2022-03-25\ncrbug.com/1197296 [ Linux ] virtual/unified-autoplay/external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1197296 [ Linux ] external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\n\n# Sheriff 2022-03-28\ncrbug.com/1311015 [ Mac ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311015 [ Win ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311128 external/wpt/paint-timing/fcp-only/fcp-document-opacity-text.html [ Skip ]\n\n# Navigation API incorrectly leaves promises forever unsettled (crbug.com/1311786)\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-parent.html [ Skip ]\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-sibling.html [ Skip ]\n\n# Scroll Unification known issues (go/su-web-tests) for enabling in test:\ncrbug.com/1311431 [ Mac ] fast/scroll-behavior/overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1248581 fast/scrolling/resize-corner-tracking-touch.html [ Failure Pass ]\ncrbug.com/1312036 virtual/hidpi/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure Pass ]\n\n# These tests fail on SwiftShader FEMU due to a change in log/exp implementation.\ncrbug.com/1311456 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit.html [ Skip ]\ncrbug.com/1311456 [ Fuchsia ] tables/mozilla/core/bloomberg.html [ Skip ]\n\n# Sheriff 2022-04-01\ncrbug.com/1312266 [ Mac10.13 ] external/wpt/preload/preload-time-to-fetch.https.html [ Failure ]\n\n# Sheriff 2022-04-05\ncrbug.com/1203491 [ Linux ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1203491 [ Win ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1313282 inspector-protocol/input/dispatchMouseEvent.js [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/1254163 [ Mac10.13 ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure ]\ncrbug.com/1313396 [ Linux ] external/wpt/dom/events/Event-dispatch-on-disabled-elements.html [ Failure Pass ]\ncrbug.com/1194945 external/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\ncrbug.com/1244896 fast/mediacapturefromelement/CanvasCaptureMediaStream-set-size-too-large.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-06\ncrbug.com/1290670 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-mandatory-getStats.https.html [ Failure Pass ]\ncrbug.com/1313894 [ Mac10.14 ] rootscroller/root-scroller-paint-order.html [ Failure Pass ]\ncrbug.com/1314130 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\n\n# Sheriff 2022-04-07\ncrbug.com/1314314 virtual/percent-based-scrolling/fast/scrolling/scrollbars/mouse-autoscrolling-on-deleted-scrollbar.html [ Skip ]\ncrbug.com/1314323 [ Win ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scrolling-over-custom-scrollbar.html [ Skip ]\n\ncrbug.com/1313970 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure ]\n\n# Sheriff 2022-04-08\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-tiled-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode-tiled.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-2.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-gradient.html [ Failure Pass ]\n\n# Sheriff 2022-04-11\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-color.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-crossfade-image-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-color.html [ Failure Pass ]\n\n# Sheriff 2022-04-12\ncrbug.com/1315300 [ Linux ] http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Failure Pass ]\n\n# HighlightOverlayPainting: decoration painting hasn\u2019t landed yet.\ncrbug.com/1147859 virtual/css-highlight-overlay-painting/wpt_internal/css/css-pseudo/target-text-001.html [ Failure ]\n\ncrbug.com/1316341 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\ncrbug.com/1316341 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-18, failing on Mac and WebKit Win10 builders.\ncrbug.com/1317007 external/wpt/mimesniff/mime-types/charset-parameter.window.html [ Failure Pass ]\n\n# Sheriff 2022-04-18\n# TODO(crbug.com/1316144): [Crash] Re-enable this test\n# TODO(crbug.com/1334265): [Failure] Bug fix temporarily reverted while compat issues are worked out\ncrbug.com/1316144 external/wpt/css/cssom-view/scrollIntoView-fixed.html [ Crash Failure Pass ]\n\ncrbug.com/1296449 [ Linux Release ] external/wpt/workers/SharedWorker-MessageEvent-source.any.sharedworker.html [ Skip ]\n\n# Sheriff 2022-04-20\ncrbug.com/1253971 [ Mac ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-parts-structure.tentative.html [ Timeout ]\n\n# Sheriff 2022-04-21\ncrbug.com/1318318 external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318318 virtual/plz-dedicated-worker/external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318561 [ Linux ] external/wpt/x-frame-options/get-decode-split.html [ Failure Pass ]\n\n# Temp disable MST transfer tests until Browser feature can be enabled in tests\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer.https.html [ Skip ]\n# Explicit PASS expectation for the virtual suite, to stop it inheriting \"Skip\".\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Pass ]\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Pass ]\n\n# Sheriff 2022-04-22\ncrbug.com/1318695 http/tests/devtools/elements/highlight/highlight-multiple-css-grid.js [ Failure Pass ]\ncrbug.com/1318929 http/tests/devtools/console/console-uncaught-promise.js [ Failure Pass ]\ncrbug.com/1282966 http/tests/security/mixedContent/insecure-plugin-in-iframe.html [ Failure Pass ]\ncrbug.com/1318952 http/tests/inspector-protocol/fetch/fetch-samesite-cookies.js [ Failure Pass ]\n\n# Imported WPT crashes on desktop platforms\ncrbug.com/1318456 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319320 rootscroller/root-scroller-apply-filter-to-parent.html [ Failure Pass ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319808 virtual/wbn-from-network/external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Skip ]\n\n# Sheriff 2022-04-26\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1288741 external/wpt/scroll-to-text-fragment/find-range-from-text-directive.html [ Pass Timeout ]\n\n# Sheriff 2022-04-28\ncrbug.com/1289759 [ Linux ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\ncrbug.com/1289759 [ Win ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\n\ncrbug.com/1137003 fast/dom/timer-throttling-background-page-near-alignment-interval.html [ Failure Pass ]\n\n# Sheriff 2022-04-29\ncrbug.com/1321243 accessibility/aom-reparenting-crash.html [ Pass Timeout ]\n\n# Sheriff 2022-05-02\ncrbug.com/1321293 fast/forms/calendar-picker/week-picker-choose-default-value-after-set-value.html [ Failure Pass ]\n\n# Test expectations for Win11\ncrbug.com/1295890 [ Win11 ] fast/dom/HTMLScriptElement/script-sync-load-failure.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/workers/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/security/document-domain-canonicalizes-iframe.html [ Skip Timeout ]\n\ncrbug.com/1322405 external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\ncrbug.com/1322405 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-05-06\ncrbug.com/1322072 external/wpt/fetch/content-type/script.window.html [ Failure Pass ]\ncrbug.com/1286883 [ Mac ] fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-05-11\ncrbug.com/1324428 fast/webgl/canvas-toDataURL-crash.html [ Crash Pass ]\n\n# Throttling a hidden-cross origin frame may stall animations.\ncrbug.com/1323246 external/wpt/web-animations/timing-model/timelines/sibling-iframe-timeline.html [ Failure Pass ]\n\n# Sheriff 2022-05-16\ncrbug.com/1325858 virtual/wasm-code-caching/http/tests/wasm/caching/code-cache.html [ Skip ]\n\n# introduce blink_wpt_tests\ncrbug.com/1299834 [ Win ] wpt_internal/html/interaction/focus/the-autofocus-attribute/object-fallback.html [ Timeout ]\ncrbug.com/1299834 external/wpt/css/css-pseudo/first-letter-with-quote.html [ Failure ]\n\n# Remove from virtual tests when ReduceAcceptLanguage is turned on by default.\ncrbug.com/1307484 http/tests/serviceworker/reduce-accept-language/fetch-event-headers.html [ Skip ]\ncrbug.com/1307484 navigator_language/reduce_accept_language/* [ Skip ]\n\n# Sheriff 2022-05-20\ncrbug.com/1291841 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment-security.sub.html [ Pass Timeout ]\ncrbug.com/1327764 inspector-protocol/overlay/overlay-persistent-overlays.js [ Failure Pass ]\n\n# Sheriff 2022-05-26\ncrbug.com/1329596 virtual/gpu-rasterization/images/jpeg-with-non-interleaved-dc-channels.html [ Failure Pass ]\n\n# Sheriff 2022-05-30\ncrbug.com/1330238 [ Mac ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\n\n# Sheriff 2022-05-31\ncrbug.com/1330555 external/wpt/service-workers/service-worker/resource-timing-fetch-variants.https.html [ Failure Pass ]\n\n# fast/canvas/OffscreenCanvas-2d-drawImage.html\ncrbug.com/1273409 [ Mac11 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Mac11-arm64 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Linux ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Win10.20h2 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\n\n# Flaky on multiple platforms\ncrbug.com/1277696 fast/loader/reload-zero-byte-plugin.html [ Failure Pass ]\n\n# Flaky on Windows\ncrbug.com/1316343 [ Win ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\n\n# Manual test fails when run under automation due to lack of pop-up blocking. https://github.com/web-platform-tests/wpt/issues/3867\ncrbug.com/1337125 external/wpt/window-placement/fullscreen-companion-window-manual.tentative.https.html [ Failure ]\n\n# Temporarily disable test to merge 'reveal' button change to adorner\ncrbug.com/1066772 http/tests/devtools/elements/shadow/shadow-slot-assignment.js [ Skip ]\n\n# Flaky on multiple platforms\ncrbug.com/1338536 http/tests/devtools/oopif/oopif-elements-nesting.js [ Failure Pass ]\n\n# Tests that compare a float color to an integer color can suffer off-by-one errors\n# There is no mechanism for fuzzing reference tests outside of WPT and tests that require internals cannot be in WPT\n# When the scrollbarOverlay is moved to float color these can be re-enabled\ncrbug.com/1308932 compositing/overflow/reparented-overlay-scrollbars-should-respect-ancestor-clip.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/reparented-unclipped-overlay-scrollbars-with-offset-from-renderer.html [ Failure ]\ncrbug.com/1308932 compositing/squashing/squashing-inside-perspective-with-reparented-scrolling.html [ Failure ]\ncrbug.com/1308932 fast/scrolling/overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbar-over-child-layer-nested-4.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/non-reparented-overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/auto-scrollbar-fades-out.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbars-within-overflow-scroll.html [ Failure ]\n\n# Sheriff 2022-06-24\ncrbug.com/1339211 [ Mac ] external/wpt/css/css-text-decor/text-decoration-thickness-fixed.html [ Failure Pass ]\ncrbug.com/1339214 [ Mac ] external/wpt/webaudio/the-audio-api/the-convolvernode-interface/realtime-conv.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/the-img-element/invisible-image.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] virtual/threaded/external/wpt/requestidlecallback/deadline-max-rAF-dynamic.html [ Failure Pass ]\ncrbug.com/webrtc/14228 external/wpt/webrtc/protocol/h264-profile-levels.https.html [ Failure Pass ]\n\n[ Debug ] external/wpt/scroll-animations/scroll-timelines/set-current-time-before-play.html [ Skip ]\n\nexternal/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-networkState.html [ Skip ]\n\n# Sheriff 2022-06-29\ncrbug.com/1340421 [ Mac10.15 ] virtual/gpu-rasterization/images/color-profile-svg-foreign-object.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/image-object-in-canvas.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/quadraticCurveTo.xml [ Skip ]\n\ncrbug.com/1340716 [ Linux ] accessibility/notification-listeners.html [ Skip ]\n\n# Sheriff 2022-06-30\ncrbug.com/1340781 fullscreen/full-screen-table-section.html [ Skip ]\n\n# Sheriff 2022-07-05\ncrbug.com/1340763 external/wpt/pointerevents/pointerevent_capture_mouse.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/with-ports/021.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/without-ports/021.html [ Failure Pass ]\n\n# Sheriff 2022-07-07\ncrbug.com/1339538 [ Mac ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Linux ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Win10.20h2 ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1097040 media/controls/overflow-menu-always-visible.html [ Failure Pass ]\ncrbug.com/1342526 external/wpt/dom/events/non-cancelable-when-passive/non-passive-wheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-08\ncrbug.com/1180274 virtual/plz-dedicated-worker/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2022-07-12\ncrbug.com/1343674 [ Linux ] editing/deleting/460938.html [ Failure Pass ]\ncrbug.com/1343664 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-document.html [ Failure Pass ]\n\n# Disable test to land a MSE change. Spec change (MSE PR#306) is still pending,\n# and once landed, this line can be removed.\ncrbug.com/878133 external/wpt/media-source/idlharness.window.html [ Failure Pass ]\n\n# Tests that are exercising the tentative feature COOP: restrict-properties.\n# These are tests which are implemented before the feature is complete and\n# flakily crash.\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?1-2 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?3-4 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?5-6 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?7-8 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?9-last [ Crash Failure ]\n\n# Sheriff 2022-07-13\ncrbug.com/1204176 [ Linux ] fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1344175 [ Mac12 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-root.html [ Failure Pass ]\n\n# Sheriff 2022-07-15\ncrbug.com/1344652 [ Mac ] external/wpt/webmessaging/with-ports/020.html [ Failure Pass ]\ncrbug.com/1344771 virtual/force-defer-script/external/wpt/html/semantics/scripting-1/the-script-element/defer-script/document-write.html [ Failure Pass ]\n\n# Sheriff 2022-07-18\ncrbug.com/1345192 accessibility/aria-combo-box-with-delay-add.html [ Skip ]\ncrbug.com/1345235 external/wpt/content-security-policy/style-src/stylehash-basic-blocked.sub.html [ Skip ]\ncrbug.com/1334674 [ Mac11 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2022-07-21\ncrbug.com/1346158 crbug.com/1346158 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-window.html [ Failure Pass ]\n\n# Sheriff 2022-07-25\ncrbug.com/1343935 [ Mac10.15 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-26\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-links.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-not-propagated-by-out-of-flow.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style.html [ Skip ]\n\n# Sheriff 2022-07-28\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1348118 [ Linux ] virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# Failure on all platforms was added before, see crbug.com/1306770\ncrbug.com/1348118 http/tests/inspector-protocol/network/interception-download.js [ Failure Pass Timeout ]\ncrbug.com/1348118 [ Linux ] virtual/first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# See crbug.com/1344277 for Crash and Failure\ncrbug.com/1348118 [ Linux ] wpt_internal/webxr/ar/ar_light_estimation.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-07-29 - Flaky failure.\ncrbug.com/1347675 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/fragment-navigation.https.html [ Pass Timeout ]\n\n# Offscreen GPU canvas test flaky\ncrbug.com/1286883 [ Linux ] virtual/gpu/fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-08-01\n# TODO(crbug.com/1225773): Re-enable this test\ncrbug.com/1225773 [ Linux ] external/wpt/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-event-during-parse.html [ Skip ]\n\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1218100 [ Linux ] external/wpt/IndexedDB/idb-partitioned-coverage.tentative.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-08-03\ncrbug.com/1349910 [ Mac ] external/wpt/html/semantics/popups/popup-hover-hide.tentative.html [ Failure Pass ]\n\n# Sheriff 2022-08-06\ncrbug.com/1350336 [ Mac ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure Pass ]\ncrbug.com/1350337 [ Linux ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/1350341 [ Linux ] virtual/threaded-no-composited-antialiasing/animations/direction-and-fill/fill-mode-missing-from-to-keyframes.html [ Failure Pass ]\n\n# These seem to consistently fail with disabling code cache.\ncrbug.com/1351903 http/tests/devtools/network/font-face.js [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-ad-fixed-position.html [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-image-ad-fixed-position.html [ Failure Pass ]\n\n# Sheriff 2022-08-11\n# Most likely a forced style/layout update from accessibiity while we are\n# render blocking, which should not happen.\ncrbug.com/1351811 external/wpt/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html [ Failure Pass ]\n\n# Flakes on all platforms.\ncrbug.com/1310202 [ Fuchsia ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Linux ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Mac ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Win ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-08-12\ncrbug.com/1352248 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-non-ad-followed-by-ad.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/cross-origin-opener-policy/coop-sandbox-redirects-cuts-opener.https.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/interaction/focus/chrome-object-tab-focus-bug.html [ Failure Pass ]\ncrbug.com/1352566 [ Mac ] external/wpt/html/browsers/browsing-the-web/history-traversal/event-order/before-load-hash-twice.html [ Failure Pass ]\ncrbug.com/1352607 external/wpt/css/css-transitions/transition-base-response-002.html [ Failure Pass ]\n\n# Sheriff 2022-08-17\ncrbug.com/1340167 fast/loader/iframe-navigation-stealing-focus.html [ Pass Timeout ]\n\n# Sheriff 2022-08-18\ncrbug.com/1354013 virtual/threaded-no-composited-antialiasing/animations/sample-on-last-keyframe.html [ Skip ]\n\n# Sheriff 2022-08-19\ncrbug.com/1354433 [ Mac ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\ncrbug.com/1354433 [ Linux ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\n\n# Failures with FractionalScrollOffsets disabled for web tests by default.\ncrbug.com/1358383 fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Failure ]\ncrbug.com/1358383 [ Mac ] fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure ]\ncrbug.com/1358383 fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure ]\ncrbug.com/1358383 virtual/compositor_threaded_scrollbar_scrolling/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\ncrbug.com/1358383 virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\n[ Mac ] virtual/percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/fractional-scroll-offsets/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\n\n# Sheriff 2022-08-24\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\n\n# Sheriff 2022-08-26\ncrbug.com/1356118 [ Mac ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\n\n# Sheriff 2022-08-30\ncrbug.com/1357621 [ Linux ] external/wpt/webauthn/getcredential-abort.https.html [ Failure Pass Timeout ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default.html [ Failure Pass ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-writing-mode-rl.html [ Failure Pass ]\n\ncrbug.com/1358051 external/wpt/longtask-timing/containerTypes.html [ Failure Pass ]\n\n# TODO(crbug.com/1358147): Re-enable this test\nvirtual/plz-dedicated-worker/external/wpt/resource-timing/no-entries-for-cross-origin-css-fetched-memory-cache.sub.html [ Skip ]\n\n# Disable step failure trigger flaky tests\ncrbug.com/1351571 [ Mac12-arm64 ] http/tests/devtools/persistence/automapping-bind-committed-network-sourcecode.js [ Failure Pass Timeout ]\ncrbug.com/1358333 [ Mac10.15 ] external/wpt/webmessaging/event.origin.sub.htm [ Failure Pass ]\n\n# Sheriff 2022-08-31\ncrbug.com/1306304 [ Mac ] plugins/multiple-plugins.html [ Failure Pass ]\n\n# Sheriff 2022-09-01\nvirtual/gpu/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Skip ]\n\n# Sheriff 2022-09-06\ncrbug.com/1358298 external/wpt/html/cross-origin-embedder-policy/require-corp.https.html [ Failure Pass ]\n\n# Disable more gpu test on linux dbg\ncrbug.com/1356664 [ Debug Linux ] virtual/no-alloc-direct-call/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure Pass ]\n\n# Disable scrolling flake on win\ncrbug.com/1359541 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-div-custom-scrollbar.html [ Failure Pass Timeout ]\n\n# Disable devtool flake on Mac11,12,10.15\ncrbug.com/1363259 [ Mac11 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac12 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac10.15 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\n\n# Disable media security policy test on Linux (dbg, ASAN) and Mac12 (dbg)\ncrbug.com/1349180 [ Linux ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\ncrbug.com/1349180 [ Debug Mac12 ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\n\n# Disable flakes on mac builders\ncrbug.com/1363708 [ Mac12 ] http/tests/media/gc-while-network-loading.html [ Pass Timeout ]\ncrbug.com/1363683 [ Mac12 ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac10.15 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac11 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\n\n# Disable DOM web flake on debug linux and mac\ncrbug.com/1353578 [ Debug Linux ] fast/dom/gc-image-element-2.html [ Failure Pass ]\ncrbug.com/1353578 [ Debug Mac ] fast/dom/gc-image-element-2.html [ Failure Pass ]\n\n# Sheriff 2022-09-07\ncrbug.com/1360691 [ Debug Linux ] fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure ]\n\n# Sheriff 2022-09-09\ncrbug.com/1361956 [ Linux ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Pass Timeout ]\n"
   },
   "written_data": {
     "third_party/blink/web_tests/TestExpectations": "# tags: [ Fuchsia Linux Mac Mac10.13 Mac10.14 Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Win Win10.20h2 Win11 ]\n# tags: [ Release Debug ]\n# results: [ Timeout Crash Pass Failure Skip ]\n\n# This is the main failure suppression file for Blink LayoutTests.\n# Further documentation:\n# https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_test_expectations.md\n\n# Intentional failures to test the layout test system.\nharness-tests/crash.html [ Crash ]\nharness-tests/timeout.html [ Timeout ]\nfast/harness/sample-fail-mismatch-reftest.html [ Failure ]\n\n# Expected to fail.\nexternal/wpt/infrastructure/reftest/legacy/reftest_and_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/legacy/reftest_cycle_fail_0-ref.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-1.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-4.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-5.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-6.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_and_mismatch-7.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_match_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_mismatch_fail.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-0.html [ Failure ]\nexternal/wpt/infrastructure/reftest/reftest_multiple_mismatch-1.html [ Failure ]\naccessibility/slot-poison.html [ Failure ]\n\n# Expected to time out.\nexternal/wpt/infrastructure/expected-fail/timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_ref_timeout.html [ Timeout ]\nexternal/wpt/infrastructure/reftest/reftest_timeout.html [ Timeout ]\n\n# We don't support extracting fuzzy information from .ini files, which these\n# WPT infrastructure tests rely on.\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/reftest_fuzzy_chain_ini.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/legacy/fuzzy-ref-2.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_full.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_ref_only.html [ Failure ]\ncrbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_short.html [ Failure ]\n\n# WPT HTTP/2 is not fully supported by run_web_tests.\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=https [ Failure ]\n\n# The following tests pass or fail depending on the underlying protocol (HTTP/1.1 vs HTTP/2).\n# The results of failures could be also different depending on the underlying protocol.\ncrbug.com/1048761 external/wpt/websockets/constructor/002.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-connecting.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-nested.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/readyState/003.html?wss [ Failure Pass ]\ncrbug.com/1048761 external/wpt/websockets/unload-a-document/002.html?wss [ Failure Pass ]\n\n# Tests are flaky after a WPT import\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2 [ Failure Pass ]\n# Flaking on WebKit Linux MSAN\ncrbug.com/1207373 [ Linux ] external/wpt/uievents/order-of-events/mouse-events/mousemove-across.html [ Failure Pass ]\ncrbug.com/1339285 [ Linux ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Win ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]\ncrbug.com/1339285 [ Mac ] fast/loader/iframe-window-open-stealing-focus.html [ Pass Timeout ]\n\n# WPT Test harness doesn't deal with finding an about:blank ref test\ncrbug.com/1066130 external/wpt/infrastructure/assumptions/blank.html [ Failure ]\n\ncrbug.com/807686 crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]\n\n# The following tests need to remove the assumption that user activation is\n# available in child/sibling frames.  This assumption doesn't hold with User\n# Activation v2 (UAv2).\ncrbug.com/906791 external/wpt/fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html [ Timeout ]\n\n# These two are left over from crbug.com/881040, I rebaselined them twice and\n# they continue to fail.\ncrbug.com/881040 media/controls/lazy-loaded-style.html [ Failure Pass ]\n\n# With --enable-display-compositor-pixel-dump enabled by default, these three\n# tests fail. See crbug.com/887140 for more info.\ncrbug.com/887140 virtual/hdr/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/887140 virtual/hdr/color-profile-video.html [ Failure ]\ncrbug.com/887140 virtual/hdr/video-canvas-alpha.html [ Failure ]\n\n# Tested by paint/background/root-element-background-transparency.html for now.\nexternal/wpt/css/compositing/root-element-background-transparency.html [ Failure ]\n\n# ====== Synchronous, budgeted HTML parser tests from here ========================\n# See crbug.com/1254921 for details.\n# These tests either started failing outright, or became flaky, when the new HTML\n# parser was enabled. All of these are bugs/issues with the test itself.\n\n# Extra line info appears in the output in some cases.\ncrbug.com/1254932 http/tests/preload/meta-csp.html [ Failure ]\n\n# Extra box in the output:\ncrbug.com/1254933 css3/filters/filterRegions.html [ Failure ]\n\n# Script preloaded: No\ncrbug.com/1254940 http/tests/security/contentSecurityPolicy/nonces/scriptnonce-redirect.html [ Failure ]\n\n# Two paint failures:\ncrbug.com/1254943 paint/invalidation/overflow/resize-child-within-overflow.html [ Failure ]\ncrbug.com/1254943 fast/events/hit-test-counts.html [ Failure ]\n\n# Image isn't present:\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure Pass ]\ncrbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure Pass ]\n\n# Fails flakily or times out\ncrbug.com/1269536 [ Mac11 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\ncrbug.com/1269536 [ Mac12 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]\n\n# Unknown media state flakiness (likely due to layout occuring earlier than expected):\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-candidate-insert-before.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-audio-constructor.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-from-document-networkState.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-src.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src-not-in-document.html [ Failure Pass ]\ncrbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src.html [ Failure Pass ]\n\n# Very slow (~2 minutes) when DCHECKs are enabled, due to huge number of loop iterations.\n# The -3 variant additionally exposes a bug, but even once that's fixed the test is too slow.\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-3.html [ Failure Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-1.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-2.html [ Skip Timeout ]\ncrbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-3.html [ Skip Timeout ]\n\n# ====== Synchronous, budgeted HTML parser tests to here ========================\n\n# ====== Timed HTML parser budget tests from here ========================\n# See crbug.com/1342718 for details.\n# These tests either started failing outright, or became flaky, when the HTML\n# parser switched to using a time based budget instead of a token based budget.\n# All of these are bugs/issues with the test itself.\n\ncrbug.com/1341693 [ Linux ] external/wpt/dom/nodes/MutationObserver-document.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-play.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html [ Failure Pass ]\ncrbug.com/1339293 external/wpt/content-security-policy/media-src/media-src-7_1_2.sub.html [ Skip ]\ncrbug.com/1339293 [ Linux ] external/wpt/content-security-policy/media-src/media-src-blocked.sub.html [ Failure Pass Timeout ]\ncrbug.com/1339293 [ Linux ] fast/frames/empty-frame-src.html [ Failure Pass ]\ncrbug.com/1339293 crbug.com/1347321 fast/frames/frame-scrolling-attribute.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/controls/rotated-video-has-right-panel-width.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] media/media-controls-overflow-hidden.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/scripting-1/the-script-element/execution-timing/029.html [ Failure Pass ]\ncrbug.com/1351106 [ Linux ] fast/frames/invalid-cols-rows-value.html [ Failure Pass ]\n\n# ====== Timed HTML parser budget tests to here ========================\n\ncrbug.com/1197502 [ Win ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass ]\n\n# ====== Site Isolation failures from here ======\n# See also third_party/blink/web_tests/virtual/not-site-per-process/README.md\n# Tests temporarily disabled with Site Isolation - uninvestigated bugs:\n# TODO(lukasza, alexmos): Burn down this list.\ncrbug.com/949003 http/tests/printing/cross-site-frame-scrolled.html [ Failure Pass ]\ncrbug.com/949003 http/tests/printing/cross-site-frame.html [ Failure Pass ]\n# ====== Site Isolation failures until here ======\n\n# ====== Oilpan-only failures from here ======\n# Most of these actually cause the tests to report success, rather than\n# failure. Expected outputs will be adjusted for the better once Oilpan\n# has been well and truly enabled always.\n# ====== Oilpan-only failures until here ======\n\n# ====== Paint team owned tests from here ======\n# The paint team tracks and triages its test failures, and keeping them colocated\n# makes tracking much easier.\n# Covered directories are:\n#  compositing except compositing/animations\n#  hittesting\n#  images, css3/images,\n#  paint\n#  svg\n#  canvas, fast/canvas\n#  transforms\n#  display-lock\n#  view-transition\n# Some additional bugs that are caused by painting problems are also within this section.\n\n# The tests happened to pass with two bugs canceled each other. Now they fail\n# with the first bug fixed. Will be fixed when the second bug is fixed (crrev.com/c/3752748).\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor-iframe.html [ Failure ]\ncrbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor.html [ Failure ]\n\n# These tests block fixes done in V8. The tests run on the V8 bots as well.\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.worker.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.html [ Failure Pass ]\ncrbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.worker.html [ Failure Pass ]\n\n\n# --- Skia roll test suppressions\n\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed.html [ Failure Pass ]\ncrbug.com/1354678 compositing/reflections/nested-reflection-transformed2.html [ Failure Pass ]\ncrbug.com/1354678 fast/css/transformed-mask.html [ Failure Pass ]\ncrbug.com/1354678 paint/invalidation/reflection/reflection-with-rotation.html [ Failure Pass ]\n\n# --- END Skia roll test suppresions\n\n\n# Sheriff on 2020-09-03\ncrbug.com/1124352 media/picture-in-picture/clear-after-request.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/controls/picture-in-picture-button.html [ Crash Pass ]\ncrbug.com/1124352 media/picture-in-picture/picture-in-picture-interstitial.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/css-selector.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/exit-picture-in-picture.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/picture-in-picture-element.html [ Crash Pass ]\ncrbug.com/1124352 external/wpt/picture-in-picture/shadow-dom.html [ Crash Pass ]\n\n# These tests require portals, and some require cross-origin portals.\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1093466 external/wpt/fetch/metadata/portal.https.sub.html [ Skip ]\ncrbug.com/1093466 external/wpt/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/devtools/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/inspector-protocol/portals/* [ Skip ]\ncrbug.com/1093466 http/tests/portals/* [ Skip ]\ncrbug.com/1093466 wpt_internal/portals/* [ Skip ]\ncrbug.com/1093466 virtual/portals/external/wpt/fetch/metadata/portal.https.sub.html [ Pass ]\ncrbug.com/1093466 virtual/portals/external/wpt/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/devtools/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/inspector-protocol/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/http/tests/portals/* [ Pass ]\ncrbug.com/1093466 virtual/portals/wpt_internal/portals/* [ Pass ]\n\n# These tests require fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1123606 wpt_internal/fenced_frame/* [ Skip ]\ncrbug.com/1123606 http/tests/fenced_frame/* [ Skip ]\ncrbug.com/1123606 virtual/fenced-frame-shadow-dom/* [ Pass ]\ncrbug.com/1123606 virtual/fenced-frame-mparch/* [ Pass ]\n\n# These fail due to subtle anti-aliasing differences cause by the fact that\n# <canvas> renders via IOSurface and OffscreenCanvas does not.\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-gradients-in-worker.html [ Failure ]\ncrbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-paths-in-worker.html [ Failure ]\n\n# Offscreen canvas tests that are flaky because sometimes the image is not rendered in time\n# See crbug.com/1315650\ncrbug.com/1322089 virtual/gpu/fast/canvas/OffscreenCanvas-MessageChannel-transfer.html [ Failure Pass ]\n\n# These tests require shared-storage and fenced-frames\n# Keep this in sync with VirtualTestSuites.\ncrbug.com/1218540 wpt_internal/shared_storage/* [ Skip ]\ncrbug.com/1218540 external/wpt/shared-storage/* [ Skip ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-mparch/* [ Pass ]\ncrbug.com/1218540 virtual/shared-storage-fenced-frame-shadow-dom/* [ Pass ]\n\n# These tests require the experimental prerender feature.\n# See https://crbug.com/1126305.\ncrbug.com/1126305 external/wpt/speculation-rules/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/* [ Pass ]\ncrbug.com/1126305 wpt_internal/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/wpt_internal/prerender/* [ Pass ]\ncrbug.com/1126305 http/tests/inspector-protocol/prerender/* [ Skip ]\ncrbug.com/1126305 virtual/prerender/http/tests/inspector-protocol/prerender/* [ Pass ]\n# These tests are tentatively disabled.\ncrbug.com/1302831 virtual/prerender/external/wpt/speculation-rules/prerender/service-workers.https.html [ Failure Skip Timeout ]\ncrbug.com/1302831 virtual/prerender/http/tests/inspector-protocol/prerender/prerender-ua-override.js [ Skip ]\ncrbug.com/1302831 virtual/prerender/wpt_internal/prerender/restriction-web-auth.https.html [ Skip ]\ncrbug.com/1302831 [ Mac10.14 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\ncrbug.com/1302831 [ Win10.20h2 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]\n\n# These tests require the experimental speculative prefetch feature, and requires extra switches to enable content implementation of speculation rules prefetch.\n# This expectation and the virtual suite can be removed once that is enabled by default.\ncrbug.com/1343590 external/wpt/speculation-rules/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/* [ Pass ]\ncrbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/redirect-url.https.html [ Failure ]\ncrbug.com/1343590 http/tests/inspector-protocol/prefetch/* [ Skip ]\ncrbug.com/1343590 virtual/prefetch/http/tests/inspector-protocol/prefetch/* [ Pass ]\n\n# This is not yet implemented. We cannot use -expected.txt since the output contains UUID URLs that change each run.\ncrbug.com/1355146 virtual/prefetch/external/wpt/speculation-rules/prefetch/referrer-policy.https.html [ Skip ]\n\n# These tests are flaky with BFCache, which is enabled by default.\ncrbug.com/1311546 http/tests/test-runner/back-forward.html [ Failure Pass ]\n\n# These tests require LazyEmbed, which is currently disabled by default.\ncrbug.com/1247131 virtual/automatic-lazy-frame-loading/wpt_internal/lazyembed/* [ Pass ]\ncrbug.com/1247131 wpt_internal/lazyembed/* [ Skip ]\n\n# Ref test with very minor differences. We need fuzzy matching for our ref tests,\n# or upstream this to WPT.\ncrbug.com/1185506 svg/text/textpath-pattern.svg [ Failure Pass ]\n\ncrbug.com/1225630 fast/multicol/infinite-height-causing-fractional-row-height-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/infinitely-tall-content-in-outer-crash.html [ Skip ]\ncrbug.com/1225630 fast/multicol/insane-column-count-and-padding-nested-crash.html [ Skip ]\ncrbug.com/807395 fast/multicol/mixed-opacity-test.html [ Failure ]\ncrbug.com/1225630 fast/multicol/nested-very-tall-inside-short-crash.html [ Skip ]\n\n# Document transition tests\ncrbug.com/1276999 view-transition/* [ Skip ]\ncrbug.com/1316157 inspector-protocol/css/css-get-styles-for-view-transition.js [ Skip ]\ncrbug.com/1276999 wpt_internal/view-transition/* [ Skip ]\ncrbug.com/1276999 virtual/view-transition/* [ Pass ]\ncrbug.com/1276999 virtual/view-transition-wide-gamut/* [ Pass ]\n\ncrbug.com/1351556 virtual/view-transition-wide-gamut/wpt_internal/view-transition/commit-timeout-crash.html [ Failure Timeout ]\ncrbug.com/1351556 virtual/view-transition/view-transition/capture-callback-exception.html [ Failure ]\ncrbug.com/1351556 virtual/view-transition-wide-gamut/view-transition/capture-callback-exception.html [ Failure ]\n\n########## Ref tests can't be rebaselined ##########\ncrbug.com/619103 paint/invalidation/background/background-resize-width.html [ Failure Pass ]\n\ncrbug.com/784956 fast/history/frameset-repeated-name.html [ Failure Pass ]\n\n# These are both related to images not painting as expected, and are primarily CQ hidden flakes\ncrbug.com/1284609 images/image-load-reset-on-new-base.html [ Failure Pass ]\ncrbug.com/1271092 paint/invalidation/scroll/fixed-img-src-change-after-scroll.html [ Failure Pass ]\n\n########## Genuinely flaky ##########\ncrbug.com/624233 virtual/gpu-rasterization/images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/757605 virtual/gpu-rasterization/images/jpeg-yuv-progressive-image.html [ Failure Pass ]\n\n########## Bugs to fix ##########\n# This is a missing event and increasing the timeout or using run-after-layout-and-paint doesn't\n# seem to fix it.\ncrbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ Failure ]\n\ncrbug.com/845267 [ Mac ] http/tests/inspector-protocol/page/page-lifecycleEvents.js [ Failure Pass ]\ncrbug.com/1046784 http/tests/inspector-protocol/page/page-events-associated-isolation.js [ Failure Pass ]\n\n# Service Worker registration.update() Network Requests require more instrumentation\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-content-type.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-redirect.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-response-code.js [ Failure ]\ncrbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]\n\n# Looks like a failure to get a paint on time. Test could be changed to use runAfterLayoutAndPaint\n# instead of a timeout, which may fix things.\ncrbug.com/713049 images/color-profile-reflection.html [ Failure Pass ]\ncrbug.com/713049 [ Mac ] virtual/gpu-rasterization/images/color-profile-reflection.html [ Failure Pass Timeout ]\n\n# This test was attributed to site isolation but times out with or without it. Broken test?\ncrbug.com/1050826 external/wpt/mixed-content/gen/top.http-rp/opt-in/object-tag.https.html [ Skip Timeout ]\n\ncrbug.com/1098369 fast/canvas/OffscreenCanvas-copyImage.html [ Failure Pass ]\n\ncrbug.com/1106590 [ Mac ] virtual/gpu/fast/canvas/canvas-path-non-invertible-transform.html [ Crash Pass ]\n\ncrbug.com/1237275 fast/canvas/layers-lonebeginlayer.html [ Failure Pass ]\ncrbug.com/1237275 fast/canvas/layers-unmatched-beginlayer.html [ Failure Pass ]\n\n# Assorted WPT canvas tests failing\ncrbug.com/1093709 external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.resize.html [ Failure Pass ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.html [ Failure ]\ncrbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.shadow.html [ Failure ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.small.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.small.worker.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.NaN.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.negative.html [ Pass Timeout ]\ncrbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.zero.html [ Pass Timeout ]\ncrbug.com/1170337 [ Mac10.13 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.zero.worker.html [ Skip Timeout ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html [ Failure ]\ncrbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html [ Failure ]\n\n# Off by one pixel error on ref test\ncrbug.com/1259367 [ Mac ] printing/offscreencanvas-webgl-printing.html [ Failure ]\n\n# These are testing deprecated features: https://github.com/web-platform-tests/wpt/issues/35662\nexternal/wpt/editing/run/inserttext.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/inserttext.html?2001-last [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1-1000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?1001-2000 [ Failure ]\nexternal/wpt/editing/run/forecolor.html?2001-last [ Failure ]\nexternal/wpt/editing/run/insertlinebreak.html [ Failure ]\n\n# This test depends on synchronous focus() which does not exist (anymore?).\ncrbug.com/1074482 external/wpt/html/interaction/focus/the-autofocus-attribute/update-the-rendering.html [ Failure ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 [ Win ] external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1105278 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\ncrbug.com/1104125 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]\n\n# This test has a bug in it that prevents it from being able to deal with order\n# differences it claims to support.\ncrbug.com/1076129 external/wpt/service-workers/service-worker/clients-matchall-frozen.https.html [ Failure Pass ]\n\n# No support for un-prefixed background-clip: text or fill-color on text.\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-multi-line.html [ Failure ]\ncrbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-flex.html [ Failure ]\n\n# Flakily timing out or failing.\n# TODO(ccameron): Investigate this.\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]\ncrbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\ncrbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]\n\n# Flaky virtual/threaded-prefer-compositing tests\ncrbug.com/1309533 [ Win ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/idlharness.html [ Failure ]\ncrbug.com/1180479 [ Mac ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/scrollIntoView-smooth.html [ Failure Pass Timeout ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-added.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-correctness.html [ Skip ]\ncrbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/mousewheel-scroll-interrupted.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\ncrbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Skip ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass Timeout ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snap-scrolls-visual-viewport.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-scrollbar-scrolling-thumb.html [ Failure Pass ]\ncrbug.com/1205673 [ Linux ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1205673 [ Win ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]\ncrbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling.html [ Failure Pass ]\ncrbug.com/936891 virtual/threaded-prefer-compositing/fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Pass ]\ncrbug.com/1049599 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass Skip Timeout ]\ncrbug.com/1193920 virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass Timeout ]\ncrbug.com/1335172 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/1335172 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 [ Debug Mac12 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]\ncrbug.com/841567 virtual/threaded-prefer-compositing/fast/scrolling/overflow-scrollability.html [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/same-page-navigate.html [ Failure Pass ]\ncrbug.com/1279758 [ Win10.20h2 ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1279758 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]\ncrbug.com/1058244 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass Timeout ]\ncrbug.com/1058244 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]\n\ncrbug.com/915926 fast/events/touch/multi-touch-user-gesture.html [ Failure Pass ]\n\ncrbug.com/736052 [ Mac ] compositing/overflow/composited-scroll-with-fractional-translation.html [ Failure Pass ]\ncrbug.com/1303091 [ Linux ] compositing/overflow/paint-neg-z-order-descendants-into-scrolling-contents-layer.html [ Failure Pass ]\n\ncrbug.com/1303030 [ Linux ] paint/invalidation/forms/range-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# New OffscreenCanvas Tests that are breaking LayoutTest\n\ncrbug.com/980969 http/tests/input/discard-events-to-unstable-iframe.html [ Failure Pass ]\n\ncrbug.com/1086591 external/wpt/css/mediaqueries/aspect-ratio-004.html [ Failure ]\ncrbug.com/1086591 external/wpt/css/mediaqueries/device-aspect-ratio-002.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-005.html [ Failure ]\ncrbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-006.html [ Failure ]\ncrbug.com/962417 external/wpt/css/mediaqueries/mq-negative-range-001.html [ Failure ]\ncrbug.com/1343368 external/wpt/css/mediaqueries/viewport-script-dynamic.html [ Failure ]\ncrbug.com/1345247 external/wpt/css/mediaqueries/prefers-color-scheme-svg-image.html [ Failure ]\n\ncrbug.com/815111 external/wpt/css/css-fill-stroke/paint-order-001.tentative.html [ Failure ]\n\ncrbug.com/1007134 external/wpt/intersection-observer/v2/delay-test.html [ Failure Pass ]\ncrbug.com/1004547 external/wpt/intersection-observer/cross-origin-iframe.sub.html [ Failure Pass ]\ncrbug.com/1007229 external/wpt/intersection-observer/same-origin-grand-child-iframe.sub.html [ Failure Pass ]\n\n# These fail when device_scale_factor is changed, but only for anti-aliasing:\ncrbug.com/968791 [ Mac ] virtual/scalefactor200/css3/filters/effect-blur-hw.html [ Failure Pass ]\ncrbug.com/968791 virtual/scalefactor200/css3/filters/filterRegions.html [ Failure ]\n\n# These appear to be actually incorrect at device_scale_factor 2.0:\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-002.html [ Failure ]\ncrbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure ]\ncrbug.com/968791 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-004.html [ Failure ]\ncrbug.com/968791 [ Debug Mac11 ] virtual/scalefactor200/external/wpt/css/filter-effects/filters-test-brightness-003.html [ Failure ]\n\ncrbug.com/916825 external/wpt/css/filter-effects/filter-subregion-01.html [ Failure ]\n\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-combined-001.html [ Failure ]\ncrbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-blur.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]\ncrbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]\n\ncrbug.com/1362524 external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\ncrbug.com/1362524 virtual/scalefactor200/external/wpt/css/filter-effects/filter-invalid.html [ Failure ]\n\n# Could be addressed with fuzzy diff.\ncrbug.com/910537 external/wpt/svg/painting/marker-006.svg [ Failure ]\ncrbug.com/910537 external/wpt/svg/painting/marker-005.svg [ Failure ]\n\n# We don't yet implement context-fill and context-stroke\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-001.svg [ Failure ]\ncrbug.com/367737 external/wpt/svg/painting/reftests/paint-context-002.svg [ Failure ]\n\n# Unprefixed 'mask' ('mask-image', 'mask-border') support not yet implemented.\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-clip-exclude.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-local-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-remote-mask.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image-hash.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-005.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-008.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-001.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-002.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-003.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-004.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-005.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-006.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-007.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-006.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-007.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-008.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-009.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-010.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-011.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-012.html [ Failure ]\ncrbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-polygon-013.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-fillBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-geometryBox-2.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-marginBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1b.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1c.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1a.html [ Failure ]\ncrbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3f.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3g.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-to-mask-type.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1e.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4a.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4b.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4c.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4d.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-5.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-6.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-7.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-1.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-2.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-3.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-border.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-padding.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-cover.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-auto.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-length.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent-stretch.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent.html [ Failure ]\ncrbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent.html [ Failure ]\n\n# CSS clip-path: shape() not implemented\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/animations/clip-path-interpolation-shape.html [ Failure ]\ncrbug.com/1308431 [ Win ] external/wpt/css/css-masking/parsing/clip-path-shape-parsing.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002-units.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-003.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-004.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-001.html [ Failure ]\ncrbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-002.html [ Failure ]\n\n# CSS cascade layers\ncrbug.com/1277637 external/wpt/css/css-cascade/layer-stylesheet-sharing.html [ Failure ]\n\n# Fails, at a minimum, due to lack of support for CSS mask property in html elements\ncrbug.com/432153 external/wpt/svg/painting/reftests/display-none-mask.html [ Skip ]\n\n# WPT SVG Tests failing. Have not been investigated in all cases.\ncrbug.com/1184034 external/wpt/svg/linking/reftests/href-filter-element.html [ Failure ]\ncrbug.com/366559 external/wpt/svg/shapes/reftests/pathlength-003.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-side-001.svg [ Failure ]\ncrbug.com/366559 external/wpt/svg/text/reftests/textpath-shape-001.svg [ Failure ]\ncrbug.com/803360 external/wpt/svg/path/closepath/segment-completing.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-001.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-201.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-202.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-102.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-002.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-203.svg [ Failure ]\ncrbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-003.svg [ Failure ]\ncrbug.com/670177 external/wpt/svg/rendering/order/z-index.svg [ Failure ]\ncrbug.com/863355 [ Mac ] external/wpt/svg/shapes/reftests/pathlength-002.svg [ Failure ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-mpath-element.html [ Timeout ]\ncrbug.com/1052202 external/wpt/svg/linking/scripted/href-animate-element.html [ Timeout ]\ncrbug.com/1222395 external/wpt/svg/path/property/mpath.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/struct/reftests/use-inheritance-001.svg [ Failure ]\ncrbug.com/785246 external/wpt/svg/linking/reftests/use-descendant-combinator-003.html [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-022.svg [ Failure ]\ncrbug.com/674797 external/wpt/svg/painting/reftests/marker-path-023.svg [ Failure ]\n\ncrbug.com/699040 external/wpt/svg/text/reftests/text-xml-space-001.svg [ Failure ]\n\n# WPT backgrounds and borders tests. Note that there are many more in NeverFixTests\n# that should be investigated (see crbug.com/780700)\ncrbug.com/1242416 [ Linux ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/1242416 [ Mac10.14 ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-004.xht [ Failure ]\ncrbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-006.xht [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-008.html [ Failure ]\ncrbug.com/1268426 external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/1268426 virtual/threaded/external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]\ncrbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-009.html [ Failure ]\n\n# No emoji flag symbols available in the Windows system emoji font.\ncrbug.com/1272436 [ Win10.20h2 ] external/wpt/css/CSS2/text/bidi-flag-emoji-02.html [ Failure ]\n\n# ==== Regressions introduced by BlinkGenPropertyTrees =====\n# Reflection / mask ordering issue\ncrbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]\n# Incorrect scrollbar invalidation.\ncrbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]\ncrbug.com/887000 [ Mac10.14 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\ncrbug.com/887000 [ Mac12-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]\n\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]\ncrbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad-zoom-in-slow.html [ Failure Pass ]\ncrbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad.html [ Failure Pass ]\n\ncrbug.com/898394 virtual/android/url-bar/bottom-and-top-fixed-sticks-to-top.html [ Failure Timeout ]\n\ncrbug.com/1024151 http/tests/devtools/tracing/timeline-style/timeline-style-recalc-all-invalidator-types.js [ Failure Pass ]\n\ncrbug.com/1046784 http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Skip ]\n\n# Subpixel rounding differences that are incorrect.\ncrbug.com/997202 compositing/overflow/scaled-overflow.html [ Failure ]\n# Flaky subpixel AA difference (not necessarily incorrect, but flaky)\ncrbug.com/997202 virtual/threaded-no-composited-antialiasing/animations/skew-notsequential-compositor.html [ Failure Pass ]\n# Only one pixel difference (187,187,187) vs (188,188,188) occasionally.\ncrbug.com/1207960 [ Linux ] compositing/perspective-interest-rect.html [ Failure Pass ]\n\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg.html [ Failure ]\ncrbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg-clip.html [ Failure ]\n\ncrbug.com/1261905 external/wpt/css/css-transforms/backface-visibility-hidden-child-will-change-transform.html [ Failure ]\ncrbug.com/1261905 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-child-translate.html [ Failure ]\n\n# CompositeAfterPaint remaining failures\n# Outline paints incorrectly with columns. Needs LayoutNGBlockFragmentation.\ncrbug.com/1047358 [ Mac11 ] paint/pagination/composited-paginated-outlined-box.html [ Failure ]\n# Need to force the video to be composited in this case, or change pre-CAP\n# to match CAP behavior.\ncrbug.com/1108972 fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure ]\n# Cross-origin iframe layerization is buggy with empty iframes.\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-masked-pointer-events-mixed-2.sub.html [ Failure ]\ncrbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-complex-clip.sub.html [ Failure ]\ncrbug.com/1266900 [ Mac11 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1266900 [ Mac12 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-baseline-005.html [ Failure ]\ncrbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-suppress-baseline-001.html [ Failure ]\n\n# Needs rebaseline on Fuchsia.\ncrbug.com/1267498 [ Fuchsia ] paint/invalidation/svg/animated-svg-as-image-transformed-offscreen.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]\ncrbug.com/1267498 [ Fuchsia ] transforms/transformed-caret.html [ Failure ]\n\n# WebGPU tests are only run on GPU bots, so they are skipped by default and run\n# separately from other Web Tests.\nexternal/wpt/webgpu/* [ Skip ]\nwpt_internal/webgpu/* [ Skip ]\n\ncrbug.com/829028 [ Mac ] compositing/gestures/gesture-tapHighlight-lines-and-float-in-multicol.html [ Failure ]\n\n# Requires support of the image-resolution CSS property\ncrbug.com/1086473 external/wpt/css/css-images/image-resolution/* [ Skip ]\n\n# Fail due to lack of fuzzy matching on Linux, Win and Mac platforms for WPT. The pixels in the pre-rotated reference\n# images do not exactly match the exif rotated images, probably due to jpeg decoding/encoding issues. Maybe\n# adjusting the image size to a multiple of 8 would fix this (so all jpeg blocks are solid color).\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties.html [ Failure ]\ncrbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties-border-radius.html [ Failure ]\ncrbug.com/997202 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio.html [ Failure ]\n\ncrbug.com/1159433 external/wpt/css/css-images/image-orientation/image-orientation-exif-png.html [ Failure ]\n\n# Ref results are wrong on the background and list case, not sure on border result\ncrbug.com/1076121 external/wpt/css/css-images/image-orientation/image-orientation-border-image.html [ Failure ]\n\n# object-fit is not applied for <object>/<embed>.\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-001.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-002.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005o.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006e.html [ Failure ]\ncrbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006o.html [ Failure ]\n\n# Minor rendering difference to the ref image because of filtering or positioning.\n# (Possibly because of the use of 'image-rendering: crisp-edges' in some cases.)\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002c.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-png-002p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-001p.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002e.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002i.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002o.html [ Failure ]\ncrbug.com/1174873 external/wpt/css/css-images/object-position-svg-002p.html [ Failure ]\n\n# The following fails because we don't use the natural aspect ratio when applying\n# object-fit, and the images referenced don't have a natural size.\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003p.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004i.html [ Failure ]\ncrbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004p.html [ Failure ]\n\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-png.html [ Failure ]\ncrbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-svg.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-043.html [ Failure ]\ncrbug.com/935057 external/wpt/css/css-backgrounds/background-size-044.html [ Failure ]\n\n# Not obviously incorrect (minor pixel differences, likely due to filtering).\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-space-10.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-1.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-2.html [ Failure ]\n\n# Passes with the WPT runner but not the internal one. (???)\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1a.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1b.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1c.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-3.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-4.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-5.html [ Failure ]\n\n# Off-by-one in some components.\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-6.html [ Failure ]\ncrbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-7.html [ Failure ]\n\n# Failures due to pointerMove building synthetic events without button information (main thread only).\ncrbug.com/1056778 fast/scrolling/scrollbars/scrollbar-thumb-snapping.html [ Failure ]\n\n# Most of these fail due to subpixel differences, but a couple are real failures.\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-animation.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-sibling.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-border-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/compositing_simple_div.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-simple.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-stacking-context-001.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph-background-image.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-both-parent-and-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-svg.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-filter.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-with-3D-transform.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-script.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-parent.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-interposed.html [ Failure ]\ncrbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html [ Failure ]\ncrbug.com/1044742 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Win ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-text.html [ Failure ]\ncrbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-mask.html [ Failure ]\n\ncrbug.com/1271275 external/wpt/css/compositing/background-blending/background-blend-mode-plus-lighter.html [ Failure ]\n\n# Minor pixel differences\ncrbug.com/1056492 external/wpt/svg/painting/reftests/marker-path-001.svg [ Failure ]\n\ncrbug.com/819617 [ Linux ] virtual/text-antialias/descent-clip-in-scaled-page.html [ Failure ]\n\ncrbug.com/1196414 compositing/composited-replaced-subpixel-location.html [ Failure ]\n\n# Triage of WPT css-paint-api tests\ncrbug.com/1299442 external/wpt/css/css-paint-api/custom-property-animation-on-main-thread.https.html [ Failure Pass ]\n\n# Flaky virtual/off-main-thread-css-paint tests. Skipping whole test suite for now.\n# Open issues: 1339051, 1288136, 1286944, 1254382, 1250666, 1233826, 1123886, 1345205, 1299442, 1288136\nvirtual/off-main-thread-css-paint/external/wpt/css/css-paint-api/* [ Skip ]\n\ncrbug.com/1339051 [ Linux ] virtual/off-main-thread-css-paint/http/tests/csspaint/shadow-scale-with-page-zoom.html [ Failure ]\n\n# ====== Paint team owned tests to here ======\n\n# WPT speculative-parsing tests failing\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-alternate-stylesheet.tentative.sub.html [ Crash Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-stylesheet-nomatch-media.tentative.sub.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-alternate-stylesheet.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-disabled.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-nomatch-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-font-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-script-src.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html [ Failure ]\ncrbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html [ Failure ]\n\ncrbug.com/1142958 external/wpt/layout-instability/absolute-child-shift-with-parent-will-change.html [ Failure ]\n\ncrbug.com/922249 virtual/android/fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure Pass ]\n\n# ====== Layout team owned tests from here ======\n\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-left-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-right-002.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-left-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-right-001.xht [ Failure ]\ncrbug.com/711704 external/wpt/css/CSS2/floats/floats-wrap-bfc-006.xht [ Failure ]\n\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floating-replaced-height-008.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-108.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-109.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-110.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-126.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-127.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-128.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-129.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-130.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-131.xht [ Skip ]\ncrbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-137.xht [ Skip ]\n\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-006.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-001.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-002.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-003.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-004.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-005.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-020.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-021.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-022.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-034.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-035.xht [ Skip ]\ncrbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-036.xht [ Skip ]\n\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-002.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-003.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-004.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-005.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-006.xht [ Skip ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-005.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-006.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-001.xht [ Failure ]\ncrbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-002.xht [ Failure ]\n\n#### external/wpt/css/css-sizing\ncrbug.com/1322062 external/wpt/css/css-sizing/aspect-ratio/fieldset-element-001.html [ Failure ]\ncrbug.com/1261306 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/slice-intrinsic-size.html [ Failure ]\ncrbug.com/970201 external/wpt/css/css-sizing/clone-intrinsic-size.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-038.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-039.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-042.html [ Failure ]\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-043.html [ Failure ]\n\n# This one fails a DCHECK on Chromium infra but passes on wpt.fyi\ncrbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/grid-aspect-ratio-040.html [ Crash Pass ]\n\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-001.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-002.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-003.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-004.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-005.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-006.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-007.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-008.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-009.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-010.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-011.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-012.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-013.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-014.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-015.html [ Failure ]\ncrbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-016.html [ Failure ]\n\ncrbug.com/1008951 external/wpt/css/css-text-decor/text-decoration-color.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-001.html [ Failure ]\ncrbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-002.html [ Failure ]\n\ncrbug.com/936084 external/wpt/css/css-sizing/max-content-input-001.html [ Failure ]\ncrbug.com/918905 external/wpt/css/css-sizing/block-size-with-min-or-max-content-table-1b.html [ Failure Pass ]\n\n#### Unprefix and update the implementation for text-emphasis\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-color-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-002.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-007.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-008.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-010.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-012.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-016.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-021.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-filled-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-open-001.xht [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cf.html [ Failure ]\ncrbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cn.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-shape-001.xht [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-string-001.xht [ Failure ]\ncrbug.com/1281289 external/wpt/css/css-text/letter-spacing/letter-spacing-211.html [ Failure ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-073-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-072-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-071-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-020-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-076-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-075-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-021-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-022-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-074-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-019-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-046a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-003-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-002-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-095a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-049-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-041-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-001-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-045-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-082-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-044-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-004-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-085-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097a-manual.html [ Skip ]\ncrbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040-manual.html [ Skip ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001z.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004d.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006d.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006e.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006f.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006g.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-002.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-001.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-002.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-003.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-004.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-012c.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015b.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]\ncrbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017b.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020a.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/decorations-multiple-zorder.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/quirks-decor-noblur.html [ Failure ]\ncrbug.com/666433 external/wpt/css/css-text-decor/text-shadow/standards-decor-noblur.html [ Failure ]\n\n# `text-decoration-skip-ink: all` not implemented yet.\ncrbug.com/1054656 external/wpt/css/css-text-decor/text-decoration-skip-ink-005.html [ Skip ]\n\n# `text-decoration: spelling|grammar-error`\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-grammar-error-001.html [ Failure ]\ncrbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-spelling-error-001.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-002.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-dynamic-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-001.optional.html [ Failure ]\ncrbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-002.optional.html [ Failure ]\n\ncrbug.com/722825 [ Linux ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\ncrbug.com/722825 [ Mac10.14 ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]\n\ncrbug.com/846753 [ Mac ] http/tests/media/reload-after-dialog.html [ Failure Pass Timeout ]\n\n### external/wpt/css/css-tables/\ncrbug.com/708345 external/wpt/css/css-tables/height-distribution/extra-height-given-to-all-row-groups-004.html [ Failure ]\ncrbug.com/694374 external/wpt/css/css-tables/anonymous-table-ws-001.html [ Failure ]\ncrbug.com/174167 external/wpt/css/css-tables/visibility-collapse-colspan-003.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-max-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-min-size-001.html [ Failure ]\ncrbug.com/1179497 external/wpt/css/css-tables/col-definite-size-001.html [ Failure ]\ncrbug.com/910725 external/wpt/css/css-tables/tentative/paint/overflow-hidden-table.html [ Failure ]\n\n# [css-contain]\n\ncrbug.com/880802 external/wpt/css/css-contain/contain-layout-017.html [ Failure ]\ncrbug.com/880802 external/wpt/css/css-contain/contain-paint-021.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-001.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-002.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-003.html [ Failure ]\ncrbug.com/882385 external/wpt/css/css-contain/quote-scoping-004.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-canvas.html [ Failure ]\ncrbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-video.html [ Failure ]\n\n# [css-align]\n\ncrbug.com/722287 crbug.com/886585 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/599828 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-align-content-001.html [ Failure ]\n\n# [css-ui]\n# The `input-security` property not implemented yet.\ncrbug.com/1253732 external/wpt/css/css-ui/input-security-none-sensitive-text-input.html [ Failure ]\n# Layout team disagrees with the spec for this particular test.\ncrbug.com/591099 external/wpt/css/css-ui/text-overflow-015.html [ Failure ]\n# Various issues related to the 'appearance' property:\ncrbug.com/1284269 external/wpt/css/css-ui/compute-kind-widget-fallback-props-revert-001.html [ Failure ]\ncrbug.com/1284270 external/wpt/css/css-ui/compute-kind-widget-no-fallback-props-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-attachment-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-clip-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-image-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-origin-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-position-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-size-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-outset-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-repeat-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-slice-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-source-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-width-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-end-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-start-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-color-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-left-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-right-radius-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-style-001.html [ Failure ]\ncrbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-width-001.html [ Failure ]\n\n# [css-flexbox]\n\ncrbug.com/807497 external/wpt/css/css-flexbox/anonymous-flex-item-005.html [ Failure ]\ncrbug.com/1155036 external/wpt/css/css-flexbox/contain-size-layout-abspos-flex-container-crash.html [ Crash Pass ]\ncrbug.com/1311206 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-038.html [ Failure ]\ncrbug.com/1299946 [ Mac ] external/wpt/css/css-sizing/min-content-negative-margin-crash.html [ Pass Timeout ]\n\n# Needs \"new\" flex container intrinsic size algorithm.\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-max-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-container-min-content-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-004.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-002.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-003.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-005.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-006.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-007.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-008.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-009.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-wrap-001.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-border-sizing.html [ Failure ]\ncrbug.com/240765 external/wpt/css/css-flexbox/flex-item-transferred-sizes-padding-content-sizing.html [ Failure ]\n\n# These require css-align-3 positional keywords that Blink doesn't yet support for flexbox.\ncrbug.com/1011718 external/wpt/css/css-flexbox/flexbox-safe-overflow-position-001.html [ Failure ]\n\n# We don't currently support visibility: collapse in flexbox\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-baseline-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-001.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-002.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-003.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse-line-wrapping.html [ Failure ]\ncrbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse.html [ Failure ]\n\ncrbug.com/606208 external/wpt/css/css-flexbox/order/order-abs-children-painting-order.html [ Failure ]\n# We paint in an incorrect order when layers are present. Blocked on composite-after-paint.\ncrbug.com/370604 external/wpt/css/css-flexbox/flexbox-paint-ordering-002.xhtml [ Failure ]\n\n# We haven't implemented last baseline alignment.\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001a.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001b.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-006.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-007.xhtml [ Failure ]\ncrbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-008.xhtml [ Failure ]\n\n# [css-lists]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item.html [ Failure ]\ncrbug.com/1123457 external/wpt/css/css-lists/counter-list-item-2.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-005.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-004.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-001.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-002.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-003.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006c.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006d.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006e.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009a.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009b.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item-start.html [ Failure ]\ncrbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item.html [ Failure ]\ncrbug.com/1270480 external/wpt/css/css-lists/marker-webkit-text-fill-color.html [ Failure ]\ncrbug.com/1270483 external/wpt/css/css-lists/li-value-counter-reset-001.html [ Failure ]\ncrbug.com/947844 external/wpt/css/css-lists/list-item-definition.html [ Failure ]\n\ncrbug.com/1330383 external/wpt/css/css-lists/counter-list-item-slot-order.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-order-display-contents.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order-scoping.html [ Failure ]\ncrbug.com/1330383 external/wpt/css/css-lists/counter-slot-order.html [ Failure ]\n\n# [css-counter-styles-3]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/prefix-suffix-syntax.html [ Failure ]\ncrbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-syntax.html [ Failure ]\ncrbug.com/1168277 external/wpt/css/css-counter-styles/counter-style-at-rule/disclosure-styles.html [ Failure ]\ncrbug.com/1176315 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-function.html [ Failure ]\n\n# [css-overflow]\n# Incorrect WPT tests.\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-008.html [ Failure ]\ncrbug.com/993813 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-025.html [ Failure ]\ncrbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-029.html [ Failure ]\n\n# Maybe WontFix according to the bug\ncrbug.com/750992 external/wpt/css/css-overflow/margin-block-end-scroll-area-001.html [ Failure ]\n\n# Lack of support for font-language-override\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-01.html [ Failure ]\ncrbug.com/481430 external/wpt/css/css-fonts/font-language-override-02.html [ Failure ]\n\n# Comparing variable font rendering to static font rendering fails on systems that use FreeType for variable fonts\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-underline-position-from-font-variable.html [ Failure ]\ncrbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-decoration-thickness-from-font-variable.html [ Failure ]\n# Windows 10 bot upgrade now causes these failures on Windows-10-18363\ncrbug.com/1140324 [ Win11 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1140324 [ Win10.20h2 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]\ncrbug.com/1143005 [ Win10.20h2 ] media/track/track-cue-rendering-vertical.html [ Failure ]\n\n# Skip spaces at the start and end of a line\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-001.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-002.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-003.html [ Failure ]\ncrbug.com/1360067 external/wpt/css/css-text-decor/text-decoration-skip-spaces-004.html [ Failure ]\n\n# Tentative mansonry tests\ncrbug.com/1076027 external/wpt/css/css-grid/masonry/* [ Skip ]\n\n# external/wpt/css/css-fonts/... tests triaged away from the default WPT bug ID\ncrbug.com/1211460 external/wpt/css/css-fonts/alternates-order.html [ Failure ]\ncrbug.com/641861 [ Mac ] external/wpt/css/css-fonts/font-family-name-025.html [ Failure ]\ncrbug.com/443467 external/wpt/css/css-fonts/font-feature-settings-descriptor-01.html [ Failure ]\ncrbug.com/819816 external/wpt/css/css-fonts/font-kerning-03.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-009.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-010.html [ Failure ]\ncrbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-011.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-02.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-03.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-04.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-05.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-06.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-07.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-08.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-09.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-10.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-11.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-12.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-13.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-14.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-15.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-16.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-17.html [ Failure ]\ncrbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-18.html [ Failure ]\ncrbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/font-variant-ligatures-11.optional.html [ Failure ]\ncrbug.com/1212668 external/wpt/css/css-fonts/font-variant-position.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ar.html [ Failure ]\ncrbug.com/1240236 [ Mac ] external/wpt/css/css-fonts/system-ui-ur.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja-vs-zh.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-ur-vs-ar.html [ Failure ]\ncrbug.com/1240236 external/wpt/css/css-fonts/system-ui-zh.html [ Failure ]\ncrbug.com/1269537 [ Mac ] fast/css-generated-content/quotes-lang.html [ Failure Pass ]\n\ncrbug.com/1317062 external/wpt/html/rendering/non-replaced-elements/phrasing-content-0/br-wbr-content/content-property.tentative.html [ Failure ]\n\n# Flaky layout tests\ncrbug.com/1356336 fast/block/float/shrink-to-avoid-float-complexity.html [ Failure Pass ]\n\n# ====== Layout team owned tests to here ======\n\n# ====== LayoutNG-only failures from here ======\n# LayoutNG - is a new layout system for Blink.\n\ncrbug.com/591099 css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/boundary-shaping/boundary-shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-009.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-010.html [ Failure ]\ncrbug.com/591099 external/wpt/css/css-text/shaping/shaping-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]\ncrbug.com/835484 fast/css/outline-narrowLine.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-continuation.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects-list-translate.html [ Failure ]\ncrbug.com/591099 fast/events/touch/compositor-touch-hit-rects.html [ Failure ]\ncrbug.com/889721 fast/inline/outline-continuations.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/font-format-support-color-cff2-vertical.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/whitespace/018.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/auto-sizing-orthogonal-flows.html [ Failure ]\ncrbug.com/591099 fast/writing-mode/percentage-height-orthogonal-writing-modes.html [ Failure ]\ncrbug.com/835484 paint/invalidation/outline/inline-focus.html [ Failure ]\ncrbug.com/591099 paint/invalidation/scroll/fixed-under-composited-fixed-scrolled.html [ Failure ]\n\n# CSS Text failures\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-105.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-018.html [ Failure Pass ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-026.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-028.html [ Failure ]\ncrbug.com/602434 external/wpt/css/css-text/text-transform/text-transform-tailoring-001.html [ Failure ]\ncrbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-006.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-multiple-001.html [ Failure ]\ncrbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-033.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-002.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-001.html [ Failure ]\ncrbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-end-of-line-001.html [ Failure ]\ncrbug.com/1098801 external/wpt/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-013.html [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-discard-001.xht [ Failure ]\ncrbug.com/1219041 external/wpt/css/css-text/white-space/text-space-trim-trim-inner-001.xht [ Failure ]\n\n# LayoutNG ref-tests that need to be updated (cannot be rebaselined).\ncrbug.com/591099 [ Win ] virtual/text-antialias/ellipsis-with-self-painting-layer.html [ Failure ]\ncrbug.com/1098801 virtual/text-antialias/whitespace/whitespace-in-pre.html [ Failure ]\n\n# LayoutNG failures that needs to be triaged\ncrbug.com/591099 virtual/text-antialias/selection/selection-rect-line-height-too-small.html [ Failure ]\ncrbug.com/591099 fast/css-intrinsic-dimensions/width-avoid-floats.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-span.html [ Failure ]\ncrbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-text.html [ Failure ]\ncrbug.com/591099 virtual/text-antialias/selection/inline-block-in-selection-root.html [ Failure ]\ncrbug.com/591099 [ Win ] editing/selection/paint-hyphen.html [ Failure Pass ]\ncrbug.com/591099 [ Mac11 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac12 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]\ncrbug.com/591099 [ Mac ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Win ] virtual/text-antialias/word-space-monospace.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counter-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] css2.1/t1202-counters-09-b.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/CSS2/text/white-space-bidirectionality-001.xht [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-002.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-003.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00C.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-text/word-break/word-break-break-all-004.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-transforms/transform-inline-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-027.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-028.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-embed-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-isolate-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-normal-011.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-override-006.html [ Failure ]\ncrbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-plaintext-001.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content-counter-010.htm [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css/content/content-quotes-07.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/forms/text/text-lineheight-centering.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/column-count-with-rules.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-big-line.html [ Failure ]\ncrbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/box/hover-pseudo-borders.html [ Failure ]\ncrbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-auto.html [ Failure ]\ncrbug.com/591099 [ Mac ] paint/invalidation/flexbox/remove-inline-block-descendant-of-flex.html [ Failure ]\n\n# A few other lines for this test are commented out above to avoid conflicting expectations.\n# If they are not also fixed, reinstate them when removing these lines.\ncrbug.com/982211 fast/events/before-unload-return-value-from-listener.html [ Crash Pass Timeout ]\n\n# WPT css-writing-mode tests failing for various reasons beyond simple pixel diffs\ncrbug.com/1222818 external/wpt/css/css-writing-modes/logical-physical-mapping-001.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-005.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-003.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-014.html [ Failure ]\ncrbug.com/1212254 external/wpt/css/css-writing-modes/available-size-013.html [ Failure ]\ncrbug.com/717862 [ Mac ] external/wpt/css/css-writing-modes/mongolian-orientation-002.html [ Failure ]\ncrbug.com/717862 external/wpt/css/css-writing-modes/mongolian-orientation-001.html [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]\ncrbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-008.xht [ Failure ]\ncrbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\ncrbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]\n\n### With LayoutNGFragmentItem enabled\ncrbug.com/982194 [ Win10.20h2 ] fast/writing-mode/border-image-vertical-lr.html [ Failure Pass ]\n\n# Known issues with offsetTop/offsetLeft in a fragmented context, see crbug.com/1347984\ncrbug.com/1347984 fragmentation/table-in-subpixel-fragmentainer.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-break-freely.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions-with-thead.html [ Failure ]\ncrbug.com/1347984 fragmentation/table-row-dimensions.html [ Failure ]\n\n### Tests failing with LayoutNGFlexFragmentation enabled:\ncrbug.com/660611 fast/multicol/flexbox/doubly-nested-with-zero-width-flexbox-and-forced-break-crash.html [ Skip ]\n\n### Tests failing with LayoutNGTableFragmentation enabled:\ncrbug.com/1078927 external/wpt/css/CSS2/floats-clear/clearance-containing-fragmented-float-crash.html [ Crash Failure ]\ncrbug.com/1295905 [ Mac11-arm64 ] external/wpt/css/css-break/table/sections-and-captions-mixed-order.html [ Failure ]\ncrbug.com/1078927 external/wpt/css/css-multicol/table/balance-table-with-border-spacing.html [ Failure ]\ncrbug.com/1078927 fast/multicol/table-row-height-increase.html [ Failure ]\ncrbug.com/1078927 fragmentation/border-spacing-break-before-unbreakable-row.html [ Failure ]\ncrbug.com/1078927 fragmentation/no-repeating-table-header-after-sections.html [ Failure ]\ncrbug.com/1352931 fragmentation/repeating-thead-under-repeating-thead.html [ Failure ]\n\n### Tests failing with LayoutNGPrinting enabled:\ncrbug.com/1121942 virtual/layout_ng_printing/printing/block-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-but-static-headers-and-footers.html [ Crash Failure ]\ncrbug.com/1121942 [ Debug Mac11 ] virtual/layout_ng_printing/printing/fixed-positioned-child-shouldnt-print.html [ Crash Failure Pass ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-clipped.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-overflow-scroll.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/flexbox-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/multi-page-background.html [ Failure ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/webgl-oversized-printing.html [ Skip ]\ncrbug.com/1121942 virtual/layout_ng_printing/printing/width-overflow.html [ Failure ]\n\n# Tests passing with LayoutNGPrinting enabled:\nvirtual/layout_ng_printing/printing/fixedpos-in-multicol.html [ Pass ]\nvirtual/layout_ng_printing/printing/monolithic-at-page-block-end-horizontal-tb.html [ Pass ]\n\n### TablesNG\n# crbug.com/958381\n\n# TODO fails because cell size with only input element is 18px, not 15. line-height: 0px fixes it.\ncrbug.com/1171616 external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html [ Failure ]\n\n# Composited background painting leaves gaps.\ncrbug.com/958381 fast/table/border-collapsing/composited-cell-collapsed-border.html [ Failure ]\ncrbug.com/958381 fast/table/border-collapsing/composited-row-collapsed-border.html [ Failure ]\n\n# Rowspanned cell overflows TD visible rect.\ncrbug.com/958381 external/wpt/css/css-tables/visibility-collapse-rowspan-005.html [ Failure ]\n\n# Mac failures - antialiasing of ref\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-087.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-088.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-089.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-090.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-091.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-092.xht [ Failure ]\ncrbug.com/958381 [ Mac ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Win ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]\ncrbug.com/958381 [ Mac ] fragmentation/single-line-cells-paginated-with-text.html [ Failure ]\n\ncrbug.com/1356256 fast/table/percent-widths-float.html [ Failure Pass ]\n\n# TablesNG ends\n\n### With LayoutNGView enabled:\n\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/flex-container-fragmentation-008.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-break/flexbox/single-line-column-flex-fragmentation-029.html [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-001.xht [ Failure ]\ncrbug.com/1294155 external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-004.xht [ Failure ]\ncrbug.com/1294155 paint/invalidation/outline/outline-change-vertical-rl.html [ Failure ]\ncrbug.com/1294155 printing/fixed-positioned-overflow-scroll.html [ Failure ]\ncrbug.com/1294155 printing/multi-page-background.html [ Failure ]\ncrbug.com/1294155 [ Win ] printing/vertical-rl.html [ Failure ]\ncrbug.com/1294155 scrollbars/scrollbars-on-positioned-content.html [ Failure ]\n\n# ====== LayoutNG-only failures until here ======\n\n# ====== MathMLCore-only tests from here ======\n\n# These tests fail because some CSS properties affect MathML layout.\ncrbug.com/1227601 external/wpt/mathml/relations/css-styling/ignored-properties-001.html [ Failure Timeout ]\ncrbug.com/1227598 external/wpt/mathml/relations/css-styling/width-height-001.html [ Failure ]\n\n# These tests fail because we don't parse math display values according to the spec.\ncrbug.com/1127222 external/wpt/mathml/presentation-markup/mrow/legacy-mrow-like-elements-001.html [ Failure ]\n\n# This test fails on windows. It should really be made more reliable and take\n# into account fallback parameters.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/fractions/frac-1.html [ Failure ]\n\n# Tests failing only on certain platforms.\ncrbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/operators/mo-axis-height-1.html [ Failure ]\ncrbug.com/6606 [ Mac ] external/wpt/mathml/relations/text-and-math/use-typo-metrics-1.html [ Failure ]\n\n# Additonal presentation-markup failures\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/mo-lspace-rspace.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-5.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/presentation-markup/operators/op-dict-7.html [ Failure ]\n\n# These tests fail because we don't support the MathML href attribute, which is\n# not part of MathML Core Level 1.\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-1.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-2.html [ Failure ]\ncrbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-3.html [ Failure ]\n\n# These tests fail because they require full support for new text-transform\n# values and mathvariant attribute. Currently, we only support the new\n# text-transform: auto, use the UA rule for the <mi> element and map\n# mathvariant=\"normal\" to \"text-transform: none\".\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-script-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-case-sensitivity.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-fraktur.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-initial.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-looped.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-monospace.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-bold-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-italic.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-script.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-stretched.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-tailed.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-basic-transforms-with-default-font.html [ Failure ]\ncrbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck-font-style-font-weight.html [ Failure ]\n\n# ====== Style team owned tests from here ======\n\ncrbug.com/1353560 [ Linux ] external/wpt/css/css-content/quotes-001.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-006.html [ Failure ]\ncrbug.com/1341208 [ Mac ] external/wpt/css/css-content/quotes-007.html [ Skip ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-009.html [ Failure ]\ncrbug.com/1353560 [ Mac10.13 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 [ Mac10.14 ] external/wpt/css/css-content/quotes-012.html [ Failure ]\ncrbug.com/1353560 external/wpt/css/css-content/quotes-013.html [ Failure ]\ncrbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-014.html [ Failure ]\ncrbug.com/1353560 [ Mac10.15 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac11-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Mac12-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]\ncrbug.com/1353560 [ Win ] external/wpt/css/css-content/quotes-030.html [ Failure ]\ncrbug.com/1067277 external/wpt/css/css-content/element-replacement-on-replaced-element.tentative.html [ Failure ]\n\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-columns.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-ruby.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-grid.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-math.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-flex.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span-dynamic.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-root-block.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-details.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-fieldset.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-option.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-1.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-table.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-select-2.html [ Failure ]\ncrbug.com/1335893 external/wpt/css/css-content/content-none-span.html [ Failure ]\n\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-block-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-lists/inline-list-with-table-child.html [ Failure ]\ncrbug.com/1012289 [ Win10.20h2 ] external/wpt/css/css-lists/list-style-type-string-005b.html [ Failure ]\n\n# css-pseudo\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-001.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-001.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-002.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-004.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-001.html [ Failure ]\ncrbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-marker.html [ Failure ]\ncrbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-child-marker.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-hi-001.html [ Failure ]\ncrbug.com/1172333 external/wpt/css/css-pseudo/first-letter-digraph.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-001.html [ Failure ]\ncrbug.com/1314629 external/wpt/css/css-pseudo/selection-link-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Failure ]\ncrbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-pseudo/target-text-004.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-grammar-error.html [ Failure ]\ncrbug.com/1353352 fast/css3-text/css3-text-decoration/text-decoration-line-spelling-error.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Pass ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-002.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-001.html [ Failure ]\ncrbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-002.html [ Failure ]\ncrbug.com/1351020 [ Mac ] external/wpt/compat/webkit-text-fill-color-property-002.html [ Failure ]\n\n# CSS highlight painting (HighlightOverlayPainting)\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html [ Failure ]\ncrbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-painting-003.html [ Failure ]\ncrbug.com/1321114 paint/markers/suggestion-marker-basic.html [ Failure ]\n\ncrbug.com/1205953 external/wpt/css/css-will-change/will-change-fixpos-cb-position-1.html [ Failure ]\ncrbug.com/1207788 external/wpt/css/css-will-change/will-change-stacking-context-mask-1.html [ Failure ]\n\n# lab color space not yet implemented\ncrbug.com/1358565 external/wpt/css/css-images/gradient/gradient-eval-003.html [ Failure ]\n# color() function not implemented\ncrbug.com/1068610 external/wpt/css/css-color/predefined-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-011.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-012.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-016.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/predefined-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/a98rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/lch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/rec2020-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-basic-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-non-srgb-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/tagged-images-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-01.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-percents-02.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/display-p3-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklab-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-006.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-007.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-008.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-009.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/oklch-010.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/srgb-linear-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d50-005.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-002.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-003.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-004.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/xyz-d65-005.html [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-a0.6-a.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/t32-opacity-basic-0.6-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-basic-a.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-multiple-boxes-c.xht [ Failure ]\ncrbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-b.xht [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/at-color-profile-001.html [ Failure ]\ncrbug.com/1068610 external/wpt/css/css-color/color-mix-currentcolor-001.html [ Failure ]\n\ncrbug.com/1343361 external/wpt/css/css-color/currentcolor-003.html [ Failure ]\n\ncrbug.com/1299585 [ Mac11 ] external/wpt/css/css-color-adjust/inheritance.html [ Failure ]\ncrbug.com/1299585 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html [ Failure Pass ]\n\ncrbug.com/1357623 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred.html [ Failure ]\n\n# @supports\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-001.html [ Failure ]\ncrbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-002.html [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-040.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-041.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/css-supports-042.xht [ Failure ]\ncrbug.com/1158554 external/wpt/css/css-conditional/at-supports-046.html [ Failure ]\n\n# CSS Scrollbars\ncrbug.com/891944 external/wpt/css/css-scrollbars/textarea-scrollbar-width-none.html [ Failure ]\ncrbug.com/891944 external/wpt/css/css-scrollbars/transparent-on-root.html [ Failure ]\n# Incorrect native scrollbar repaint\ncrbug.com/891944 [ Mac ] external/wpt/css/css-scrollbars/scrollbar-width-paint-001.html [ Failure ]\n\n# css-nesting\ncrbug.com/1095675 external/wpt/css/selectors/nesting.html [ Failure ]\n\n# Failures on specific Mac bots\ncrbug.com/1319399 [ Mac11 ] external/wpt/css/selectors/focus-visible-025.html [ Failure ]\n\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-16.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-64.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-62.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-161.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18c.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-61.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-63.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-20.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-66.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-21.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-177a.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-17.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-65.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18b.xml [ Skip ]\ncrbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-159.xml [ Skip ]\n\n# Failures from CSS3 Text (text-justify and text-indent: hanging/each-line) not being implemented.\ncrbug.com/248894 external/wpt/css/css-pseudo/first-letter-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-pseudo/first-line-allowed-properties.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-composition.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/animations/text-indent-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/inheritance.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-indent-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-computed.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/parsing/text-justify-valid.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-indent/text-indent-each-line-hanging.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-002.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-004.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-005.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-006.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-and-trailing-spaces-003.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-distribute-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-character-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-inter-word-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-interpolation.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-text/text-justify/text-justify-none-001.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-indent.html [ Failure ]\ncrbug.com/248894 external/wpt/css/css-typed-om/the-stylepropertymap/properties/text-justify.html [ Failure ]\ncrbug.com/248894 external/wpt/web-animations/responsive/textIndent.html [ Failure ]\n\ncrbug.com/1364304 external/wpt/css/css-variables/css-variable-change-style-001.html [ Failure Pass ]\n\n# ====== Style team owned tests to here ======\n\n# Failing WPT html/semantics/* tests. Not all have been investigated.\ncrbug.com/1233659 external/wpt/html/semantics/embedded-content/the-embed-element/embed-represent-nothing-04.html [ Failure ]\ncrbug.com/1234202 external/wpt/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-menu.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-skip-no-boxes.html [ Failure ]\ncrbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-007.html [ Failure ]\ncrbug.com/1167095 external/wpt/html/semantics/forms/form-submission-0/text-plain.window.html [ Pass Timeout ]\ncrbug.com/939561 [ Mac ] external/wpt/html/semantics/forms/the-input-element/show-picker.tentative.html [ Skip ]\ncrbug.com/1132413 external/wpt/html/semantics/scripting-1/the-script-element/json-module/parse-error.html [ Timeout ]\ncrbug.com/1232504 external/wpt/html/semantics/embedded-content/media-elements/src_object_blob.html [ Timeout ]\ncrbug.com/1232504 [ Win ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/1234199 [ Linux ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1234199 [ Mac ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]\ncrbug.com/1232504 [ Mac11 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\ncrbug.com/1232504 [ Mac12 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]\n\ncrbug.com/1292852 [ Mac ] external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow.html [ Failure Pass ]\n\n# XML nodes aren't match by .class selectors:\ncrbug.com/649444 external/wpt/css/selectors/xml-class-selector.xml [ Failure ]\n\n# Bug in <select multiple> tap behavior:\ncrbug.com/1045672 fast/forms/select/listbox-tap.html [ Failure ]\n\n### sheriff 2019-07-16\ncrbug.com/983799 [ Win ] http/tests/navigation/redirect-on-back-updates-history-item.html [ Pass Timeout ]\n\n### sheriff 2018-05-28\n\ncrbug.com/767269 [ Win ] inspector-protocol/layout-fonts/cjk-ideograph-fallback-by-lang.js [ Failure Pass ]\n\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]\ncrbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\ncrbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]\n\n# Elastic overscroll doesn't work on Mac/Linux when running as a web_test. Manually,\n# this works as expected.\ncrbug.com/1310079 [ Mac ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\ncrbug.com/1310079 [ Linux ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]\n\n# For win10, see crbug.com/955109\ncrbug.com/538697 [ Win ] printing/webgl-oversized-printing.html [ Crash Failure ]\n\ncrbug.com/904592 css3/filters/backdrop-filter-svg.html [ Failure ]\ncrbug.com/904592 [ Linux ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\ncrbug.com/904592 [ Win ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]\n\ncrbug.com/280342 http/tests/media/progress-events-generated-correctly.html [ Failure Pass Timeout ]\n\n# This test is flaky when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 fast/table/frame-and-rules.html [ Failure Pass Timeout ]\n\n# This test needs a new reference when FixedElementsDontOverscroll is enabled.\ncrbug.com/585766 [ Mac11 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac11-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\ncrbug.com/585766 [ Mac12-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]\n\ncrbug.com/520736 [ Linux ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\ncrbug.com/909095 [ Mac ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]\n\n# Hiding video::-webkit-media-controls breaks --force-overlay-fullscreen-video.\ncrbug.com/1093447 virtual/android/fullscreen/rendering/backdrop-video.html [ Failure ]\n\n# gpuBenchmarking.pinchBy is busted on desktops for touchscreen pinch\ncrbug.com/787615 [ Win ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\ncrbug.com/787615 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]\n\n# gpuBenchmarking.pinchBy is not implemented on Mac for touchscreen pinch\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-out-slow.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow-desktop.html [ Skip ]\ncrbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-desktop.html [ Skip ]\n\ncrbug.com/520188 [ Win ] http/tests/local/fileapi/file-last-modified-after-delete.html [ Failure Pass ]\ncrbug.com/520611 [ Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Failure Pass ]\ncrbug.com/520194 http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires.html [ Failure Pass ]\n\ncrbug.com/1051136 fast/forms/select/listbox-overlay-scrollbar.html [ Failure ]\n\n# These performance-sensitive user-timing tests are flaky in debug on all platforms, and flaky on all configurations of windows.\n# See: crbug.com/567965, crbug.com/518992, and crbug.com/518993\n\ncrbug.com/432129 html/marquee/marquee-scroll.html [ Failure Pass ]\ncrbug.com/326139 crbug.com/390125 media/video-frame-accurate-seek.html [ Failure Pass ]\ncrbug.com/421283 html/marquee/marquee-scrollamount.html [ Failure Pass ]\n\n# TODO(oshima): Move the event scaling code to eventSender and remove this.\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/gesture-scroll-amount.html [ Failure Timeout ]\ncrbug.com/567837 virtual/scalefactor200/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Linux ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\ncrbug.com/567837 [ Win ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]\n\n# Only virtual/threaded version of these tests pass (or running them with --enable-threaded-compositing).\ncrbug.com/936891 fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Failure ]\n\ncrbug.com/498539 http/tests/devtools/tracing/timeline-misc/timeline-bound-function.js [ Failure Pass ]\n\ncrbug.com/498539 crbug.com/794869 crbug.com/798548 crbug.com/946716 http/tests/devtools/elements/styles-4/styles-update-from-js.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/889952 fast/selectors/selection-window-inactive.html [ Failure Pass ]\n\ncrbug.com/1107923 inspector-protocol/debugger/wasm-streaming-url.js [ Failure Pass Timeout ]\n\n# Script let/const redeclaration errors\ncrbug.com/1042162 http/tests/inspector-protocol/console/console-let-const-with-api.js [ Failure Pass ]\n\n# Will be re-enabled and rebaselined once we remove the '--enable-file-cookies' flag.\ncrbug.com/470482 fast/cookies/local-file-can-set-cookies.html [ Skip ]\n\n# Text::inDocument() returns false but should not.\ncrbug.com/264138 dom/legacy_dom_conformance/xhtml/level3/core/nodecomparedocumentposition38.xhtml [ Failure ]\n\ncrbug.com/411164 [ Win ] http/tests/security/powerfulFeatureRestrictions/serviceworker-on-insecure-origin.html [ Pass ]\n\ncrbug.com/686118 http/tests/security/setDomainRelaxationForbiddenForURLScheme.html [ Crash Pass ]\n\n# Flaky tests on Mac after enabling scroll animations in web_tests\ncrbug.com/944583 [ Mac ] fast/events/keyboard-scroll-by-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-page.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/space-scroll-textinput-canceled.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll-on-iframe.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll.html [ Failure Pass ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-x-in-scrolling-page.html [ Failure Pass Timeout ]\ncrbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-y-in-scrolling-page.html [ Failure Pass Timeout ]\n# Sheriff: 2020-05-18\ncrbug.com/1083820 [ Mac ] fast/scrolling/document-level-wheel-event-listener-passive-by-default.html [ Failure Pass ]\n\n# In external/wpt/html/, we prefer checking in failure\n# expectation files. The following tests with [ Failure ] don't have failure\n# expectation files because they contain local path names.\n# Use crbug.com/490511 for untriaged failures.\ncrbug.com/108417 external/wpt/html/rendering/non-replaced-elements/tables/table-border-1.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/color.html [ Failure ]\ncrbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/width.html [ Failure ]\ncrbug.com/692560 external/wpt/html/semantics/document-metadata/styling/LinkStyle.html [ Failure Pass ]\n\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins.html [ Failure ]\ncrbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins-2.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-painting-order.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-display-rendering.html [ Failure ]\ncrbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-tall.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3s.html [ Failure ]\ncrbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3q.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/anonymous-button-content-box.html [ Failure ]\ncrbug.com/962936 external/wpt/html/rendering/widgets/button-layout/inline-level.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1l.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2i.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2j.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2k.html [ Failure ]\ncrbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2l.html [ Failure ]\n\ncrbug.com/821455 editing/pasteboard/drag-files-to-editable-element.html [ Failure ]\n\ncrbug.com/1170052 external/wpt/mediacapture-streams/MediaStreamTrack-MediaElement-disabled-audio-is-silence.https.html [ Pass Timeout ]\ncrbug.com/1174937 [ Mac10.15 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Mac11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\ncrbug.com/1174937 external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]\n\ncrbug.com/766135 fast/dom/Window/redirect-with-timer.html [ Pass Timeout ]\n\n# Ref tests that needs investigation.\ncrbug.com/404597 fast/forms/long-text-in-input.html [ Skip ]\ncrbug.com/552494 virtual/prefer_compositing_to_lcd_text/scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-018.html [ Failure ]\ncrbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-024.html [ Failure ]\ncrbug.com/1134483 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-036.html [ Failure ]\n\ncrbug.com/745905 external/wpt/css/css-ui/text-overflow-021.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-001.html [ Failure ]\ncrbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html [ Failure ]\n\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]\ncrbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Crash Failure ]\n\ncrbug.com/1067031 external/wpt/css/css-overflow/webkit-line-clamp-035.html [ Failure ]\n\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-margin-001.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-005.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-inset-003.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-polygon-004.html [ Failure Pass ]\ncrbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-shape-arguments-000.html [ Failure Pass ]\n\ncrbug.com/1339541 [ Linux ] compositing/framesets/composited-frame-alignment.html [ Failure Pass ]\n\ncrbug.com/424365 external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-016.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-013.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-014.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-015.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-043.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-048.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-023.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-027.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-022.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-008.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-024.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-011.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-046.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-052.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-051.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-010.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-026.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-012.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-049.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-047.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-009.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-053.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-050.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-006.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-037.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-025.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-007.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-005.html [ Failure ]\ncrbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-007.html [ Failure ]\n\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-001.html [ Failure ]\ncrbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-002.html [ Failure ]\ncrbug.com/1140728 external/wpt/css/css-text/hyphens/hyphens-span-002.html [ Failure ]\ncrbug.com/1139693 virtual/text-antialias/hyphens/midword-break-priority.html [ Failure ]\n\ncrbug.com/1250257 external/wpt/css/css-text/tab-size/tab-size-block-ancestor.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-001.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-002.html [ Failure ]\ncrbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-003.html [ Failure ]\ncrbug.com/970200 external/wpt/css/css-text/text-indent/text-indent-tab-positions-001.html [ Failure ]\ncrbug.com/1030452 external/wpt/css/css-text/text-transform/text-transform-upperlower-016.html [ Failure ]\n\ncrbug.com/1008029 [ Mac ] external/wpt/css/css-text/white-space/pre-wrap-018.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-019.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-012.html [ Failure ]\ncrbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-013.html [ Failure ]\n\n# Handling of trailing other space separator\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-002.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-003.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-004.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-001.html [ Failure ]\ncrbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-002.html [ Failure ]\n\ncrbug.com/1162836 external/wpt/css/css-text/white-space/full-width-leading-spaces-004.html [ Failure ]\n\n# Follow up the spec change for U+2010, U+2013\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-loose-hyphens-001.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-normal-hyphens-002.html [ Failure ]\ncrbug.com/1052717 external/wpt/css/css-text/line-break/line-break-strict-hyphens-002.html [ Failure ]\n\n# Inseparable characters\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-normal-015a.xht [ Failure ]\ncrbug.com/1091631 external/wpt/css/css-text/line-break/line-break-strict-015a.xht [ Failure ]\n\n# Link event firing\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html [ Timeout ]\ncrbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html [ Timeout ]\n\n# crbug.com/1095379: These are flaky-slow, but are already present in SlowTests\ncrbug.com/73609 http/tests/media/video-play-stall.html [ Failure Pass Timeout ]\ncrbug.com/518987 http/tests/xmlhttprequest/navigation-abort-detaches-frame.html [ Pass Timeout ]\ncrbug.com/538717 [ Win ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/829740 fast/history/history-back-twice-with-subframes-assert.html [ Pass Timeout ]\ncrbug.com/836783 fast/peerconnection/RTCRtpSender-setParameters.html [ Pass Timeout ]\n\n# crbug.com/1218715 This fails when PartitionConnectionsByNetworkIsolationKey is enabled.\ncrbug.com/1218715 external/wpt/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\ncrbug.com/1218715 wpt_internal/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]\n\n# Sheriff 2021-05-25\ncrbug.com/1209900 fast/peerconnection/RTCPeerConnection-reload-sctptransport.html [ Failure Pass ]\n\n# This test is currently failing everywhere\ncrbug.com/846981 fast/webgl/texImage-imageBitmap-from-imageData-resize.html [ Skip ]\n\n# crbug.com/1095379: These fail with a timeout, even when they're given extra time (via SlowTests)\ncrbug.com/1135405 http/tests/devtools/sources/debugger-pause/debugger-pause-infinite-loop.js [ Pass Timeout ]\ncrbug.com/1072022 [ Mac ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/1072022 [ Linux ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]\ncrbug.com/915903 http/tests/security/inactive-document-with-empty-security-origin.html [ Pass Timeout ]\ncrbug.com/987138 [ Linux ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/987138 [ Win ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]\ncrbug.com/1122742 http/tests/devtools/sources/debugger/source-frame-inline-breakpoint-decorations.js [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck.https.html [ Pass Timeout ]\ncrbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck-cors-import.https.html [ Pass Timeout ]\ncrbug.com/805756 external/wpt/html/semantics/tabular-data/processing-model-1/span-limits.html [ Pass Timeout ]\n\n# crbug.com/1218716: These fail when TrustTokenOriginTrial is enabled.\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation-xhr.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation.tentative.https.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-default-feature-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-supported-by-feature-policy.tentative.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-default-permissions-policy.tentative.https.sub.html [ Failure ]\ncrbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-supported-by-permissions-policy.tentative.html [ Failure ]\n\n# Sheriff 2020-02-06\n\n# These are added to W3CImportExpectations as Skip, remove when next import is done.\ncrbug.com/666657 external/wpt/css/css-text/hanging-punctuation/* [ Skip ]\n\ncrbug.com/909597 external/wpt/css/css-ui/text-overflow-ruby.html [ Failure ]\n\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-001.html [ Failure ]\ncrbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-002.html [ Failure ]\n\n# crbug.com/1218721: These tests fail when libvpx_for_vp8 is enabled.\ncrbug.com/1218721 fast/borders/border-radius-mask-video-shadow.html [ Failure ]\ncrbug.com/1218721 fast/borders/border-radius-mask-video.html [ Failure ]\ncrbug.com/1218721 [ Mac ] http/tests/media/video-frame-size-change.html [ Failure ]\n\ncrbug.com/637055 fast/css/outline-offset-large.html [ Skip ]\n\n# Either \"combo\" or split should run: http://testthewebforward.org/docs/css-naming.html\ncrbug.com/410320 external/wpt/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001.html [ Skip ]\n\n# These tests pass but images do not match because of wrong half-leading in vertical-lr\n\n# These tests pass but images do not match because of position: absolute in vertical flow bug\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-003.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-005.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-007.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-009.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-002.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-004.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-006.xht [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-008.xht [ Failure ]\n\n# These tests pass but images do not match because tests are stricter than the spec.\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-001.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-002.html [ Failure ]\ncrbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-003.html [ Failure ]\n\n# We're experimenting with changing the behavior of the 'nonce' attribute\n\n# These CSS Writing Modes Level 3 tests pass but causes 1px diff on images, notified to the submitter.\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-020.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-008.xht [ Failure ]\ncrbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-020.xht [ Failure ]\n\ncrbug.com/381684 [ Mac ] fonts/family-fallback-gardiner.html [ Skip ]\ncrbug.com/381684 [ Win ] fonts/family-fallback-gardiner.html [ Skip ]\n\ncrbug.com/377696 printing/setPrinting.html [ Failure ]\ncrbug.com/1311165 printing/fixed-positioned-but-static-headers-and-footers.html [ Failure ]\ncrbug.com/1121942 printing/fixedpos-in-multicol.html [ Failure ]\ncrbug.com/1121942 printing/monolithic-at-page-block-end-horizontal-tb.html [ Failure ]\ncrbug.com/1121942 printing/page-break-avoid.html [ Failure ]\n\ncrbug.com/1204498 external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass ]\ncrbug.com/1223681 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass Timeout ]\n\n# crbug.com/1218723 This test fails when SplitCacheByNetworkIsolationKey is enabled.\ncrbug.com/1218723 http/tests/devtools/network/network-prefetch.js [ Failure ]\n\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure Pass ]\ncrbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure Pass ]\n\ncrbug.com/524160 [ Debug ] http/tests/media/media-source/stream_memory_tests/mediasource-appendbuffer-quota-exceeded-default-buffers.html [ Timeout ]\n\n# based on Builder Win7 Tests (1) and flakyness dashboard\ncrbug.com/1325545 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.html [ Failure Pass ]\ncrbug.com/1325515 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1325518 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.html [ Failure Pass ]\ncrbug.com/1325538 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.serviceworker.html [ Failure Pass ]\n\n# On all platforms media tests don't currently use gpu-accelerated (proprietary)\n# codecs, so no benefit to running them again with gpu acceleration enabled.\ncrbug.com/555703 virtual/media-gpu-accelerated/* [ Skip ]\n\ncrbug.com/400841 media/video-canvas-draw.html [ Failure ]\n\n# switching to apache-win32: needs triaging.\ncrbug.com/528062 [ Win ] http/tests/css/missing-repaint-after-slow-style-sheet.pl [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-data-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/local/blob/send-hybrid-blob.html [ Failure Timeout ]\ncrbug.com/528062 [ Win ] http/tests/security/XFrameOptions/x-frame-options-cached.html [ Failure ]\ncrbug.com/528062 [ Win ] http/tests/security/contentSecurityPolicy/cached-frame-csp.html [ Failure ]\n\n# When drawing subpixel smoothed glyphs, CoreGraphics will fake bold the glyphs.\n# In this configuration, the pixel smoothed glyphs will be created from subpixel smoothed glyphs.\n# This means that CoreGraphics may draw outside the reported glyph bounds, and in this case does.\n# By about a quarter or less of a pixel.\ncrbug.com/997202 [ Mac ] virtual/text-antialias/international/bdo-bidi-width.html [ Failure ]\n\ncrbug.com/574283 [ Mac ] fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]\n\ncrbug.com/599670 [ Win ] http/tests/devtools/resource-parameters-ipv6.js [ Crash Failure Pass ]\ncrbug.com/472330 fast/borders/border-image-outset-split-inline-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-lr.html [ Failure ]\ncrbug.com/472330 fast/writing-mode/box-shadow-vertical-rl.html [ Failure ]\n\ncrbug.com/346473 fast/events/drag-on-mouse-move-cancelled.html [ Failure ]\n\n# These tests are skipped as there is no touch support on Mac.\ncrbug.com/613672 [ Mac ] fast/events/pointerevents/multi-pointer-event-in-slop-region.html [ Skip ]\n\n# In addition to having no support on Mac, the following test times out\n# regularly on Windows.\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll-by-page.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchpad-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchscreen-fling.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-mainframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-xhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-yhidden.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-diagonally.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe-editable.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-input-field.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-past-extent.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-zoomed.html [ Skip ]\ncrbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page.html [ Skip ]\n\n# Since there is no compositor thread when running tests then there is no main thread event queue. Hence the\n# logic for this test will be skipped when running Layout tests.\ncrbug.com/770028 external/wpt/pointerevents/pointerlock/pointerevent_getPredictedEvents_when_pointerlocked-manual.html [ Skip ]\ncrbug.com/770028 external/wpt/pointerevents/pointerevent_predicted_events_attributes-manual.html [ Skip ]\n\n# This test relies on racy should_send_resource_timing_info_to_parent() flag being sent between processes.\ncrbug.com/957181 external/wpt/resource-timing/nested-context-navigations-iframe.html [ Failure Pass ]\n\n# During work on crbug.com/1171767, we discovered a bug demonstrable through\n# WPT. Marking as a failing test until we update our implementation.\ncrbug.com/1223118 external/wpt/resource-timing/initiator-type/link.html [ Failure ]\n\n# Chrome touch-action computation ignores div transforms.\ncrbug.com/715148 external/wpt/pointerevents/pointerevent_touch-action-rotated-divs_touch-manual.html [ Skip ]\n\ncrbug.com/658304 [ Win ] fast/forms/select/input-select-after-resize.html [ Crash Failure Pass Timeout ]\n\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-001.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-002.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-003.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-004.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005a.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006.html [ Failure ]\ncrbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006a.html [ Failure ]\n\ncrbug.com/1029069 [ Mac ] external/wpt/css/css-fonts/standard-font-family.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-11.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-12.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-13.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-14.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-15.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-16.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-19.html [ Failure ]\ncrbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-20.html [ Failure ]\n\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-2.html [ Failure ]\ncrbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-3.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-text-decor/text-decoration-thickness-percent-001.html [ Failure ]\n\ncrbug.com/752449 [ Mac10.14 ] external/wpt/css/css-fonts/matching/fixed-stretch-style-over-weight.html [ Failure ]\n\ncrbug.com/1191718 external/wpt/css/css-fonts/size-adjust-text-decoration.tentative.html [ Failure ]\n\n# CSS Font Feature Resolution is not implemented yet\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-001.html [ Failure ]\ncrbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-002.html [ Failure ]\n\n# Disabled briefly until test runner support lands.\ncrbug.com/479533 accessibility/show-context-menu.html [ Skip ]\ncrbug.com/479533 accessibility/show-context-menu-shadowdom.html [ Skip ]\ncrbug.com/483653 accessibility/scroll-containers.html [ Skip ]\n\n# Temporarily disabled until document marker serialization is enabled for AXInlineTextBox\ncrbug.com/1227485 accessibility/spelling-markers.html [ Failure ]\n\n# Bugs caused by enabling DMSAA on OOPR-Canvas\ncrbug.com/1229463 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-largedraws.html [ Crash ]\ncrbug.com/1229486 virtual/oopr-canvas2d/fast/canvas/canvas-incremental-repaint.html [ Failure ]\n\n# Temporarily disabled after chromium change\ncrbug.com/492511 [ Mac ] virtual/text-antialias/atsui-negative-spacing-features.html [ Failure ]\ncrbug.com/492511 [ Mac ] virtual/text-antialias/international/arabic-justify.html [ Failure ]\n\ncrbug.com/501659 fast/xsl/xslt-missing-namespace-in-xslt.xml [ Failure ]\n\ncrbug.com/501659 http/tests/security/xss-DENIED-xml-external-entity.xhtml [ Failure ]\ncrbug.com/501659 fast/css/stylesheet-candidate-nodes-crash.xhtml [ Failure ]\n\n# TODO(chrishtr) uncomment ones marked crbug.com/591500 after fixing crbug.com/665259.\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-but-static-headers-and-footers.html [ Failure Pass ]\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Failure Pass ]\n\ncrbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/list-item-with-empty-first-line.html [ Failure ]\n\ncrbug.com/353746 virtual/android/fullscreen/video-specified-size.html [ Failure Pass ]\n\ncrbug.com/525296 fast/css/font-load-while-styleresolver-missing.html [ Crash Failure Pass ]\n\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-window.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-worker.html [ Failure Pass Timeout ]\ncrbug.com/538717 http/tests/permissions/chromium/test-request-multiple-sharedworker.html [ Failure Pass Timeout ]\n\ncrbug.com/548765 http/tests/devtools/console-fetch-logging.js [ Failure Pass ]\n\ncrbug.com/399951 http/tests/mime/javascript-mimetype-usecounters.html [ Failure Pass ]\n\ncrbug.com/663847 fast/events/context-no-deselect.html [ Failure Pass ]\n\ncrbug.com/611658 [ Win ] virtual/text-antialias/emphasis-combined-text.html [ Failure ]\n\ncrbug.com/654477 [ Win ] compositing/video/video-controls-layer-creation.html [ Failure Pass ]\ncrbug.com/654477 fast/hidpi/video-controls-in-hidpi.html [ Failure ]\ncrbug.com/654477 fast/layers/video-layer.html [ Failure ]\n# These could likely be removed - see https://chromium-review.googlesource.com/c/chromium/src/+/1252141\ncrbug.com/654477 media/controls-focus-ring.html [ Failure ]\n\ncrbug.com/637930 http/tests/media/video-buffered.html [ Failure Pass ]\n\ncrbug.com/613659 external/wpt/quirks/percentage-height-calculation.html [ Failure ]\n\n# Note: this test was previously marked as slow on Debug builds. Skipping until crash is fixed\ncrbug.com/619978 fast/css/giant-stylesheet-crash.html [ Skip ]\n\ncrbug.com/624430 [ Win10.20h2 ] virtual/text-antialias/font-features/caps-casemapping.html [ Failure ]\n\ncrbug.com/399507 virtual/threaded/http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# These tests have test harness errors and PASS lines that have a\n# non-deterministic order.\ncrbug.com/705125 fast/mediacapturefromelement/CanvasCaptureMediaStream-capture-out-of-DOM-element.html [ Failure ]\n\n# Working on getting the CSP tests going:\ncrbug.com/694525 external/wpt/content-security-policy/navigation/to-javascript-parent-initiated-child-csp.html [ Skip ]\n\n# These tests will be added back soon:\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html [ Skip ]\ncrbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html [ Skip ]\n\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-cross-document-traversal.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-hashchange.html [ Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-pushstate.html [ Timeout ]\n\n# These two are like the above but some bots seem to give timeouts that count as failures according to the -expected.txt,\n# while other bots give actual timeouts.\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-same-document-nav.html [ Failure Timeout ]\ncrbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-nav.html [ Failure Timeout ]\n\ncrbug.com/876485 fast/performance/performance-measure-null-exception.html [ Failure ]\n\ncrbug.com/713587 external/wpt/css/css-ui/caret-color-006.html [ Skip ]\n\n# Unprefixed image-set() not supported\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-rendering.html [ Failure ]\ncrbug.com/630597 external/wpt/css/css-images/image-set/image-set-content-rendering.html [ Failure ]\n\ncrbug.com/604875 external/wpt/css/css-images/tiled-gradients.html [ Failure ]\n\ncrbug.com/1347068 external/wpt/css/css-images/gradient/gradient-eval-004.html [ Failure ]\n\ncrbug.com/808834 [ Linux ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\ncrbug.com/808834 [ Win ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]\n\ncrbug.com/723741 virtual/threaded/http/tests/devtools/tracing/idle-callback.js [ Crash Failure Pass Timeout ]\n\n# Untriaged failures after https://crrev.com/c/543695/.\n# These need to be updated but appear not to be related to that change.\ncrbug.com/626703 http/tests/devtools/indexeddb/database-refresh-view.js [ Failure Pass ]\ncrbug.com/626703 crbug.com/946710 http/tests/devtools/extensions/extensions-sidebar.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/805463 external/wpt/acid/acid3/numbered-tests.html [ Skip ]\n\ncrbug.com/828506 [ Win ] fast/events/touch/scroll-without-mouse-lacks-mousemove-events.html [ Failure Pass ]\n\n# Failure messages are unstable so we cannot create baselines.\ncrbug.com/832071 external/wpt/service-workers/service-worker/worker-client-id.https.html [ Failure ]\n\n# failures in external/wpt/css/css-animations/ and web-animations/ from Mozilla tests\ncrbug.com/849859 external/wpt/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html [ Failure ]\n\n# Some control characters still not visible\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-001.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-002.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-003.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-004.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-005.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-006.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-007.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-008.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00B.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-00D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-010.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-011.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-012.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-013.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-014.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-015.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-016.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-017.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-018.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-019.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01F.html [ Failure ]\ncrbug.com/893490 external/wpt/css/css-text/white-space/control-chars-07F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-080.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]\ncrbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\ncrbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# tests in this group need implementation of keyDown/keyUp\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/multiDevice.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/actionsWithKeyPressed.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/infrastructure/testdriver/actions/textEditCommands.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/893480 [ Mac ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 [ Win ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-input-element/checkable-active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/forms/the-button-element/active-onblur.html [ Failure Timeout ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-canceling.html [ Failure ]\ncrbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/inert-node-is-uneditable.html [ Failure ]\n# tests in this group need implementation of focus navigation forward/backward\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/delegatesFocus-highlight-sibling.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback-default-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-2levels.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-fallback.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-with-tabindex.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots-in-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-with-delegatesFocus.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-nested-slots.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassigned-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-unassignable-slot.html [ Failure ]\ncrbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-with-negative-index.html [ Failure ]\n\n# needs implementation of test_driver_internal.action_sequence\n# for these tests there is an exception when scrolling: element click intercepted error\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-basic.html [ Failure Timeout ]\ncrbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-scrolling.html [ Failure Timeout ]\n\n# crbug.com/1298321: \"element click intercepted error\" when <body style=\"zoom:2\">.\ncrbug.com/1298321 fast/forms/calendar-picker/calendar-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/calendar-picker/date-picker-appearance-zoom150.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/select-popup/popup-menu-appearance-zoom.html [ Failure Pass Timeout ]\ncrbug.com/1298321 fast/forms/suggestion-picker/date-suggestion-picker-appearance-zoom200.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]\ncrbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]\n\n# crbug.com/1299212: These need more work after the revamp of picker-common.js\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-appearance-coarse.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select-popup/popup-menu-position.html [ Failure Pass Timeout ]\ncrbug.com/1299212 http/tests/webfont/popup-menu-load-webfont-after-open.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/week-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/month-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/datetimelocal-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-appearance-after-closing-popup.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/color-scheme/select/select-popup-appearance-basic.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/select/menulist-popup-type-ahead-style-change.html [ Failure Pass Timeout ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Failure Pass ]\ncrbug.com/1299212 fast/forms/calendar-picker/date-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/datetimelocal/datetimelocal-picker-input-change-events.html [ Crash Pass Timeout ]\ncrbug.com/1299212 fast/forms/month/month-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/time/time-picker-input-change-events.html [ Pass Timeout ]\ncrbug.com/1299212 fast/forms/week/week-picker-input-change-events.html [ Crash Pass Timeout ]\n# This might be just flaky on Windows:\ncrbug.com/1299212 [ Linux ] fast/forms/select/menulist-popup-mutation-crash.html [ Failure Pass Timeout ]\n# These appear to be flaky at least on Linux:\ncrbug.com/1299212 [ Linux ] fast/forms/week/week-picker-ax.html [ Failure Pass ]\ncrbug.com/1299212 [ Linux ] fast/forms/select-popup/popup-menu-ax.html [ Failure Pass ]\n\n# isInputPending requires threaded compositing and layerized iframes\ncrbug.com/910421 external/wpt/is-input-pending/* [ Skip ]\ncrbug.com/910421 virtual/threaded-composited-iframes/external/wpt/is-input-pending/* [ Pass ]\n\n# requestIdleCallback requires threaded compositing\ncrbug.com/1259718 external/wpt/requestidlecallback/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/external/wpt/requestidlecallback/* [ Pass ]\ncrbug.com/1259718 http/tests/devtools/isolated-code-cache/* [ Skip ]\ncrbug.com/1259718 virtual/threaded/http/tests/devtools/isolated-code-cache/* [ Pass ]\n\n# WebVTT is off because additional padding\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_completely_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_down.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/bidi_ruby.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_LF_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2028_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2029_u05D0.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0041_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u05D0_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0628_first.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u06E9_no_strong_dir.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/cue_too_long.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/decode_escaped_entities.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/disable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_line.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text_while_paused.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/enable_controls_reposition.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_height_19.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/single_quote.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_90.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_99.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_0_is_top.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_1_wrapped_cue_grow_downwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_-2_wrapped_cue_grow_upwards.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap_move_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_height400_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_with_controls.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/navigate_cue_position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/one_line_cue_plus_wrapped_cue.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/repaint.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/cue_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_box.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand_css_relative_url.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hex.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hsla.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_rgba.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/cue_func_selector_single_colon.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/id_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_allowed_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/type_selector_root.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_animation_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_color.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_namespace.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_future.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_past.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_transition_with_timestamp.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_voice_attribute.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_nowrap.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class_object_specific_selector.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/inherit_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_shorthand.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region_function/font_properties.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline_underline_line-through.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_underline.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-shadow.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_normal_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_nowrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-line_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-wrap_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/bold_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/inherit_as_default_value_inherits_values_from_media_element.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/italic_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/underline_object_default_font-style.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/size_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_wrapped.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/basic.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/scroll_up.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/single_line_top_left.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_x_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_y_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/width_50_percent.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50_size_gt_maximum_size.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/start_alignment.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_rl.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_ruby-position.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_vertical_text-combine-upright.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ]\ncrbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ]\n\n# Flaky test\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\n\n# FontFace object failures detected by WPT test\ncrbug.com/965409 external/wpt/css/css-font-loading/fontface-descriptor-updates.html [ Failure ]\n\ncrbug.com/1002514 external/wpt/web-share/share-sharePromise-internal-slot.https.html [ Crash Failure ]\n\ncrbug.com/1029514 external/wpt/html/semantics/embedded-content/the-video-element/resize-during-playback.html [ Failure Pass ]\n\n# ::first-line issues\ncrbug.com/1085772 external/wpt/css/css-pseudo/first-line-opacity-001.html [ Failure ]\ncrbug.com/798257 external/wpt/css/css-pseudo/first-line-line-height-002.html [ Failure ]\n\n# motion-1 issues\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-005.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-006.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-007.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-009.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-001.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-002.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-003.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-004.html [ Failure ]\ncrbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-005.html [ Failure ]\ncrbug.com/654669 external/wpt/css/motion/offset-path-shape.html [ Failure ]\ncrbug.com/654666 external/wpt/css/motion/offset-path-url.html [ Failure ]\n\n# Various css-values WPT failures\ncrbug.com/1053965 external/wpt/css/css-values/ex-unit-004.html [ Failure ]\ncrbug.com/759914 external/wpt/css/css-values/ch-unit-011.html [ Failure ]\ncrbug.com/965366 external/wpt/css/css-values/ch-unit-017.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-002.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-003.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-009.html [ Failure ]\ncrbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-010.html [ Failure ]\n\ncrbug.com/1069300 external/wpt/css/css-pseudo/active-selection-063.html [ Failure ]\ncrbug.com/1108711 external/wpt/css/css-pseudo/active-selection-057.html [ Failure ]\ncrbug.com/1110399 external/wpt/css/css-pseudo/active-selection-031.html [ Failure ]\ncrbug.com/1110401 external/wpt/css/css-pseudo/active-selection-045.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-027.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/active-selection-025.html [ Failure ]\n\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/block-ruby-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-base-container.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/empty-ruby-text-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/improperly-contained-annotation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rb-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-block-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/root-ruby.xhtml [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rt-display-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-001a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-align-002a.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-annotation-pairing-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-abs.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-float.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-base-different-size.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-004.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-005.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-box-model-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-float-handling-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-justification-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-lang-specific-style-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-003.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-text-collapse.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-001.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-002.html [ Failure ]\ncrbug.com/27659 external/wpt/css/css-ruby/rbc-rtc-basic-001.html [ Failure ]\n\ncrbug.com/1223955 external/wpt/css/css-ruby/nested-ruby-pairing-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-001.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-002.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-003.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-004.html [ Failure ]\ncrbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-005.html [ Failure ]\n\ncrbug.com/1333451 external/wpt/css/css-ruby/intra-base-white-space-001.html [ Failure ]\n\n# WebRTC: there's an open bug with some capture scenarios not working.\ncrbug.com/1156408 external/wpt/webrtc/RTCPeerConnection-relay-canvas.https.html [ Failure Pass Timeout ]\n\ncrbug.com/1074547 external/wpt/css/css-transitions/transitioncancel-002.html [ Timeout ]\n\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-004.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-005.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-001.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-002.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Failure ]\ncrbug.com/1024156 external/wpt/css/css-pseudo/highlight-styling-002.html [ Failure ]\ncrbug.com/1113004 external/wpt/css/css-pseudo/active-selection-043.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-051.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-052.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-053.html [ Failure ]\ncrbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-054.html [ Failure ]\ncrbug.com/1018465 external/wpt/css/css-pseudo/active-selection-056.html [ Failure ]\ncrbug.com/932343 external/wpt/css/css-pseudo/active-selection-014.html [ Failure ]\n\n# virtual/css-highlight-inheritance/\ncrbug.com/1217745 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/active-selection-018.html [ Failure ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-004.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-005.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Pass ]\ncrbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-002.html [ Pass ]\ncrbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-004.html [ Pass ]\ncrbug.com/1309822 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Pass ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]\ncrbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-001.html [ Pass ]\ncrbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Pass ]\ncrbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Pass ]\n\ncrbug.com/825270 external/wpt/payment-request/delegate-request.https.sub.html [ Failure ]\ncrbug.com/1105958 external/wpt/payment-request/payment-is-showing.https.html [ Failure Timeout ]\n\n### external/wpt/css/CSS2/tables/\ncrbug.com/958381 external/wpt/css/CSS2/tables/column-visibility-004.xht [ Failure ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-079.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-080.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-081.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-082.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-083.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-084.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-085.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-086.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-093.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-094.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-095.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-096.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-097.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-098.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-103.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-104.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-125.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-126.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-127.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-128.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-129.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-130.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-131.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-132.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-155.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-156.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-157.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-158.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-167.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-168.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-171.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-172.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-181.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-182.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-183.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-184.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-185.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-186.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-187.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-188.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-199.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-200.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-201.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-202.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-203.xht [ Skip ]\ncrbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-204.xht [ Skip ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/anonymous-table-box-width-001.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-009.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-010.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-011.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-012.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-015.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-016.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-017.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-019.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-020.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-177.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-178.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-179.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-180.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-189.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-190.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-191.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-192.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-193.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-194.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-195.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-196.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-197.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-198.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-205.xht [ Failure ]\ncrbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-206.xht [ Failure ]\n\n# Custom-elements\ncrbug.com/1351482 external/wpt/custom-elements/form-associated/ElementInternals-target-element-is-held-strongly.html [ Timeout ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml [ Crash ]\ncrbug.com/1365368 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]\ncrbug.com/1365604 [ Mac ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Crash Pass Timeout ]\ncrbug.com/1365604 [ Win ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Pass Timeout ]\n\n# unblock roll wpt\ncrbug.com/626703 external/wpt/service-workers/service-worker/worker-interception.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/worker-interception.https.html [ Pass ]\n\n# ====== Test expectations added to unblock wpt-importer ======\ncrbug.com/626703 external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\ncrbug.com/626703 virtual/threaded/external/wpt/requestidlecallback/deadline-max-timeout-dynamic.html [ Failure ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]\ncrbug.com/626703 external/wpt/preload/preload-resource-match.https.html [ Failure ]\ncrbug.com/1359555 virtual/prerender/external/wpt/speculation-rules/prerender/workers.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/restriction-presentation-request.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/storage-foundation.https.html [ Failure ]\ncrbug.com/626703 [ Win ] virtual/partitioned-cookies/http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Failure ]\n\n# ====== New tests from wpt-importer added here ======\ncrbug.com/626703 [ Win11 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/redirect/redirect-upload.h2.any.sharedworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/infrastructure/server/http2-context.sub.h2.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/csp-early-hints-absent-final-disallowed.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/referrer-policy-same-origin.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/basic-auth.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/closing-handshake/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/013.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/constructor/022.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/002.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-getting.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/007.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/xhr/status.h2.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/page-visibility/visibility-state-entry.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-persistent-permission.https.html [ Crash Failure ]\n# TODO(crbug.com/1358135, crbug.com/1358147): Re-enable this test: Re-enable this test\ncrbug.com/626703 [ Mac10.14 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/orientation-event/motion/page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/key-scrolling.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/view-transition/wpt_internal/view-transition/commit-timeout-crash.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/fetch/api/response/response-clone.any.serviceworker.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.worker.html [ Crash Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/basic/request-upload.h2.any.worker.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/coep-early-hints-none-final-require-corp.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/iframe-pdf.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/preconnect-in-early-hints.h2.window.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-delayed.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/003.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/009.html?wpt_flags=h2 [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/private-network-access/fetch.window.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Linux ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]\ncrbug.com/626703 [ Win11 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]\ncrbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/permissions-policy/reporting/xr-report-only.https.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-classic.http-rp/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-module-data.meta/opt-in/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-classic-data.meta/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-module-data.http-rp/upgrade/websocket.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/002.html?wss [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss [ Skip Timeout ]\ncrbug.com/626703 virtual/view-transition/wpt_internal/view-transition/content-with-transform-old-image.html [ Failure ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment.html [ Failure Skip Timeout ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-cross-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-main-frame-navigation.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-remove-subframe.html [ Skip ]\ncrbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-same-origin-subframe-navigation.html [ Skip ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc-encoded-transform/RTCPeerConnection-insertable-streams-simulcast.https.html [ Failure Pass Timeout ]\n# TODO(crbug.com/1315625): Re-enable this test\ncrbug.com/626703 external/wpt/webrtc-encoded-transform/sframe-keys.https.html [ Skip ]\ncrbug.com/626703 external/wpt/geolocation-API/getCurrentPosition_permission_allow.https.html [ Timeout ]\ncrbug.com/626703 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/idlharness.https.window.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/geolocation-API/enabled-on-self-origin-by-feature-policy.https.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/exported-names.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-import-wasm-export.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-js-cycle.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker-import.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker.tentative.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/resource-timing/object-not-found-adds-entry.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCConfiguration-iceTransportPolicy.html [ Skip Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webaudio/the-audio-api/the-pannernode-interface/ctor-panner.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.14 ] virtual/portals/external/wpt/portals/no-portal-in-sandboxed-popup.html [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/unload-a-document/005.html?wpt_flags=h2 [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-values/cap-unit-001.html [ Failure ]\ncrbug.com/626703 external/wpt/selection/textcontrols/onselectionchange-content-attribute.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_call.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_postMessage.html [ Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/channels/test_serialize.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-capture-video.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]\ncrbug.com/1270841 [ Mac ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-19.html [ Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/web-locks/bfcache/abort.tentative.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/workers/modules/shared-worker-import-csp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_AES-CTR.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.html?1-10 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker.html?141-150 [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/import_export/ec_importKey.https.any.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]\ncrbug.com/626703 [ Mac11-arm64 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/backplate/forced-colors-mode-backplate-01.html [ Crash ]\ncrbug.com/626703 external/wpt/workers/interfaces/WorkerUtils/importScripts/blob-url.worker.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Skip Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]\ncrbug.com/626703 [ Linux ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/tables/table-anonymous-objects-211.xht [ Failure ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]\ncrbug.com/626703 external/wpt/editing/run/forwarddelete.html?6001-last [ Failure ]\ncrbug.com/626703 external/wpt/selection/contenteditable/initial-selection-on-focus.tentative.html?div [ Failure ]\ncrbug.com/626703 external/wpt/geolocation-API/non-fully-active.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/selection/textcontrols/selectionchange-bubble.html [ Timeout ]\ncrbug.com/626703 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio-cross-origin.sub.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html [ Failure ]\ncrbug.com/626703 external/wpt/density-size-correction/image-set-003.html [ Failure ]\ncrbug.com/626703 external/wpt/infrastructure/assumptions/non-local-ports.sub.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel-service-worker.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-blocked-port.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.html [ Pass Timeout ]\ncrbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.worker.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]\ncrbug.com/626703 [ Mac11 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.worker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/serviceworker/cache-abort.https.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.serviceworker.html?wss [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/opening-handshake/005.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCSctpTransport-maxChannels.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/simplecall.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/bundle.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/video-rvfc/request-video-frame-callback-webrtc.https.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-demuxing.html [ Skip Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]\ncrbug.com/1209223 external/wpt/html/syntax/xmldecl/xmldecl-2.html [ Failure ]\ncrbug.com/626703 [ Mac ] editing/pasteboard/drag-selected-image-to-contenteditable.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xrSession_requestReferenceSpace_features.https.html [ Pass Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-same-site.html [ Crash Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-different-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-same-site.html [ Timeout ]\ncrbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-different-site.html [ Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/backpressure-receive.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Win10.20h2 ] external/wpt/websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.worker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac12-arm64 ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]\ncrbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/626703 external/wpt/websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2 [ Failure Timeout ]\ncrbug.com/1191547 external/wpt/html/semantics/forms/the-label-element/proxy-modifier-click-to-associated-element.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/websockets/cookies/001.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/002.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/003.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/005.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 external/wpt/websockets/cookies/007.html?wss&wpt_flags=https [ Failure ]\ncrbug.com/626703 [ Mac ] virtual/threaded/external/wpt/css/css-scroll-snap/input/keyboard.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/preload/download-resources.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys-combinations.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/keyboard/modifier-keys.html [ Timeout ]\ncrbug.com/626703 [ Mac10.13 ] virtual/threaded/external/wpt/web-animations/timing-model/animations/updating-the-finished-state.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]\ncrbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ul [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ol [ Failure Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-stop.html [ Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/webxr/xr_viewport_scale.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/editing/other/select-all-and-delete-in-html-element-having-contenteditable.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/iframe.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/infrastructure/testdriver/actions/crossOrigin.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-during-and-after-dispatch.tentative.html [ Failure Timeout ]\ncrbug.com/626703 [ Mac11 ] external/wpt/scroll-to-text-fragment/redirects.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Backspace [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Delete [ Failure Timeout ]\ncrbug.com/626703 [ Mac ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/fetch/connection-pool/network-partition-key.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-backspace.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-forwarddelete.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/workers/postMessage_block.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/uievents/order-of-events/focus-events/focus-management-expectations.html [ Timeout ]\ncrbug.com/626703 [ Mac10.14 ] external/wpt/preload/onload-event.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/workers/shared-worker-parse-error-failure.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-operations.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-dpr/content-dpr-various-elements.html [ Failure ]\ncrbug.com/626703 external/wpt/workers/abrupt-completion.html [ Timeout ]\ncrbug.com/626703 external/wpt/service-workers/service-worker/ready.https.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/fetch/corb/script-resource-with-nonsniffable-types.tentative.sub.html [ Timeout ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/web-animations/timing-model/animation-effects/phases-and-states.html [ Crash ]\ncrbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/snap-to-line.html [ Failure ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-offer.html [ Timeout ]\ncrbug.com/626703 external/wpt/webauthn/idlharness-manual.https.window.js [ Skip ]\ncrbug.com/1004760 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]\ncrbug.com/626703 external/wpt/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Timeout ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-pan-x-pan-y-pan-y_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-none-css_touch.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.worker.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames-after-reappend.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/media-source/mediasource-correct-frames.html [ Failure Pass Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/steps_for_selecting_the_payment_handler.html [ Timeout ]\ncrbug.com/626703 external/wpt/payment-method-basic-card/apply_the_modifiers.html [ Timeout ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event.html [ Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-tracks.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/webrtc/RTCPeerConnection-remote-track-mute.https.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/fetch/content-type/response.window.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-dynamic-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-001.html [ Failure ]\ncrbug.com/626703 [ Linux ] external/wpt/url/a-element.html [ Failure ]\ncrbug.com/626703 [ Win ] external/wpt/websockets/Create-url-with-space.any.html [ Failure ]\ncrbug.com/626703 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange-long.https.html [ Failure Pass ]\n\n### virtual/prerender/external/wpt/speculation-rules/prerender\ncrbug.com/1126305 [ Mac10.15 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]\ncrbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/restrictions.html [ Skip Timeout ]\n\n### See crbug.com/891427 comment near the top of this file:\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-004.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-001.svg [ Failure ]\n\ncrbug.com/1131471 external/wpt/web-locks/clientids.tentative.https.html [ Failure ]\n\n# See also crbug.com/920100 (sheriff 2019-01-09).\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/external-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style-with-differentorigin-base-tag.tentative.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/internal-stylesheet.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/presentation-attribute.html [ Failure Timeout ]\ncrbug.com/626703 external/wpt/referrer-policy/css-integration/svg/processing-instruction.html [ Failure Timeout ]\n\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-complex-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-bicubic-001.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-005.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-002.svg [ Failure ]\ncrbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-003.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-pause-resume.tentative.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-9.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-8.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-7.html [ Failure ]\ncrbug.com/626703 external/wpt/quirks/text-decoration-doesnt-propagate-into-tables/quirks.html [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-002.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-complex-001.svg [ Failure ]\ncrbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-002.svg [ Failure ]\ncrbug.com/626703 external/wpt/speech-api/SpeechSynthesis-speak-without-activation-fails.tentative.html [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-007.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-005.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-002.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-003.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-201.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-002.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-006.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-003.svg [ Failure ]\ncrbug.com/366558 external/wpt/svg/text/reftests/text-multiline-001.svg [ Failure ]\ncrbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-101.svg [ Failure ]\ncrbug.com/626703 external/wpt/clear-site-data/executionContexts.sub.html [ Timeout ]\ncrbug.com/626703 external/wpt/content-security-policy/securitypolicyviolation/targeting.html [ Timeout ]\ncrbug.com/626703 external/wpt/web-animations/timing-model/timelines/update-and-send-events.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/orientation-reading.html [ Timeout ]\n\n# Tests that rely on a non-exposed test-only API. Tested in virtual/task-tracking\nwpt_internal/task-tracking/* [ Failure Skip ]\nvirtual/task-tracking/* [ Pass ]\ncrbug.com/1326491 [ Mac ] virtual/task-tracking/wpt_internal/task-tracking/soft-navigation-heuristics/detached-iframe-container.html [ Timeout ]\n\ncrbug.com/626703 external/wpt/fetch/security/redirect-to-url-with-credentials.https.html [ Timeout ]\ncrbug.com/981970 external/wpt/fetch/http-cache/split-cache.html [ Skip ]\ncrbug.com/626703 external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-026.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-001.html [ Failure ]\ncrbug.com/626703 external/wpt/acid/acid2/reftest.html [ Failure Pass ]\ncrbug.com/626703 external/wpt/acid/acid3/test.html [ Failure ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-006.html [ Skip ]\ncrbug.com/626703 external/wpt/css/css-ui/cursor-auto-007.html [ Skip ]\ncrbug.com/626703 external/wpt/compat/webkit-text-fill-color-property-005.html [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-002.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-collapsing-bidi-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/CSS2/text/white-space-mixed-001.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006b.xht [ Failure ]\ncrbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006c.xht [ Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-avtracks.html [ Crash Failure ]\ncrbug.com/626703 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Failure Timeout ]\ncrbug.com/958104 external/wpt/presentation-api/controlling-ua/getAvailability.https.html [ Failure ]\ncrbug.com/626703 external/wpt/screen-orientation/onchange-event-subframe.html [ Timeout ]\n\n# These tests pass on the blink_rel bots but fail on the other builders\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-3-ref.html [ Crash ]\ncrbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-4.html [ Crash Timeout ]\n\n# Moved from NeverFixTests. These may be relevant again now that\n# overlay scrollbars have been fixed (crrev.com/c/3455024).\ncrbug.com/1296816 [ Win ] virtual/overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure ]\n\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-004.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-007.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-009.html [ Failure ]\ncrbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-010.html [ Failure ]\n\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-006.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-007.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-008.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-km-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-my-000.html [ Failure ]\ncrbug.com/1017164 [ Linux ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]\ncrbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-tdd-000.html [ Failure ]\ncrbug.com/1015331 external/wpt/css/css-text/white-space/eol-spaces-bidi-001.html [ Failure ]\n\ncrbug.com/899264 external/wpt/css/css-text/letter-spacing/letter-spacing-control-chars-001.html [ Failure ]\n\ncrbug.com/1290460 [ Mac ] external/wpt/css/css-text/letter-spacing/letter-spacing-bengali-yaphala-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-005.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-001.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-002.html [ Failure ]\ncrbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-003.html [ Failure ]\n\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-1.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-2.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-3.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-4.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-001.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-002.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-003.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-008.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-009.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-010.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-015.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-016.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-017.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-01.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-02.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-03.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-04.html [ Failure ]\ncrbug.com/1223979 external/wpt/css/css-text/word-spacing/word-spacing-001.html [ Failure ]\n\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-002.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-004.html [ Failure ]\ncrbug.com/614667 external/wpt/css/css-break/grid/grid-item-fragmentation-039.html [ Failure ]\ncrbug.com/1058792 external/wpt/css/css-break/transform-007.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-break/transform-009.html [ Failure ]\ncrbug.com/1156312 external/wpt/css/css-break/widows-orphans-017.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-001.html [ Failure ]\ncrbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-002.html [ Failure ]\ncrbug.com/1225630 external/wpt/css/css-multicol/large-actual-column-count.html [ Skip ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-004.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-005.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-000.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-001.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-nobackground-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-004.html [ Failure ]\ncrbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-005.html [ Failure ]\ncrbug.com/1356561 external/wpt/css/css-multicol/multicol-overflow-transform-001.html [ Failure Pass ]\ncrbug.com/792435 external/wpt/css/css-multicol/multicol-rule-004.xht [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-inset-000.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-001.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-002.html [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-003.html [ Failure ]\ncrbug.com/792437 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-001.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-002.html [ Failure ]\ncrbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-003.html [ Failure ]\ncrbug.com/636055 external/wpt/css/css-multicol/multicol-span-all-margin-nested-002.xht [ Failure ]\ncrbug.com/990240 external/wpt/css/css-multicol/multicol-span-all-rule-001.html [ Failure ]\ncrbug.com/964183 external/wpt/css/css-multicol/multicol-width-005.html [ Failure ]\ncrbug.com/481431 external/wpt/css/css-multicol/multicol-zero-height-003.html [ Failure ]\ncrbug.com/1191124 external/wpt/css/css-multicol/spanner-fragmentation-012.html [ Failure ]\ncrbug.com/1224888 external/wpt/css/css-multicol/spanner-in-opacity.html [ Failure ]\n\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-007.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-009.tentative.html [ Failure ]\ncrbug.com/1031667 external/wpt/css/css-pseudo/marker-content-011.tentative.html [ Failure ]\ncrbug.com/1097992 external/wpt/css/css-pseudo/marker-font-variant-numeric-normal.html [ Failure ]\ncrbug.com/1060007 external/wpt/css/css-pseudo/marker-text-combine-upright.html [ Failure ]\n\n# iframe tests time out if the request is blocked as mixed content.\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]\ncrbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/iframe-tag.https.html [ Skip Timeout ]\n\n# Different results on try bots and CQ, skipped to unblock wpt import.\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-default-css.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-element.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-window.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-scrollintoview-nested.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-smooth-positions.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-root.html [ Skip ]\ncrbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-window.html [ Skip ]\n\ncrbug.com/1289222 external/wpt/css/cssom-view/scroll-behavior-smooth-navigation.html [ Skip Timeout ]\n\n# Crashes with DCHECK enabled, but not on normal Release builds.\ncrbug.com/809935 external/wpt/css/css-fonts/variations/font-style-interpolation.html [ Skip Timeout ]\ncrbug.com/626703 external/wpt/css/css-ui/text-overflow-011.html [ Crash Failure Pass ]\n\n# <input disabled> does not fire click events after dispatchEvent\ncrbug.com/1115661 external/wpt/dom/events/Event-dispatch-click.html [ Timeout ]\n\ncrbug.com/1088280 [ Mac ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\ncrbug.com/1088280 [ Win ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]\n\n# Implement text-decoration correctly for vertical text\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-thickness-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-underline-offset-vertical-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-002.html [ Failure ]\ncrbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-001.html [ Failure ]\n\ncrbug.com/912362 external/wpt/web-animations/timing-model/timelines/timelines.html [ Failure ]\n\n# crbug.com/1315717: Deprecating <object><param>\ncrbug.com/1315717 external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Failure ]\ncrbug.com/1315717 virtual/object-param-url/external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Pass ]\n\n# Unclear if XHR events should still be fired after its frame is discarded.\ncrbug.com/881180 external/wpt/xhr/open-url-multi-window-4.htm [ Timeout ]\n\ncrbug.com/910709 navigator_language/worker_navigator_language.html [ Timeout ]\n\ncrbug.com/435547 http/tests/cachestorage/serviceworker/ignore-search-with-credentials.html [ Skip ]\n\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\ncrbug.com/1160916 external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]\n\n# [css-grid]\ncrbug.com/1045599 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-004.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html [ Failure ]\ncrbug.com/1045599 external/wpt/css/css-grid/grid-definition/grid-repeat-max-width-001.html [ Failure ]\ncrbug.com/1335889 external/wpt/css/css-grid/grid-model/grid-areas-overflowing-grid-container-009.html [ Failure ]\n\n# Simple to fix - but blocked on performance regression requiring cache logic change.\ncrbug.com/1272533 external/wpt/css/css-grid/layout-algorithm/grid-intrinsic-size-dynamic-block-size.html [ Failure ]\n\n# The 'last baseline' keyword is not implemented yet\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-item-self-baseline-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-002.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-004.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-003.html [ Skip ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html [ Failure ]\ncrbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html [ Failure ]\n\n# Baseline Content-Alignment is not implemented yet for CSS Grid Layout\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-001.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-002.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-003.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-004.html [ Skip ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-align-001.html [ Failure ]\ncrbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-justify-001.html [ Failure ]\n\n# [css-subgrid]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-009.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-smaller-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/grid-template-computed-nogrid.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/independent-formatting-context.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/item-percentage-height-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-002.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-003.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-004.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-005.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-006.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-007.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-008.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-001.html [ Failure ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-002.html [ Crash Failure Timeout ]\ncrbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-stretch.html [ Failure ]\n\ncrbug.com/1236992 svg/dom/SVGListPropertyTearOff-gccrash.html [ Failure Pass ]\n\n# [css-animations]\ncrbug.com/816956 [ Win ] external/wpt/css/css-animations/KeyframeEffect-getKeyframes.tentative.html [ Failure ]\n\ncrbug.com/664450 http/tests/devtools/console/console-on-animation-worklet.js [ Failure Pass Timeout ]\n\n# [css-transitions]\ncrbug.com/1289685 external/wpt/css/css-transitions/properties-value-inherit-001.html [ Failure Pass ]\n\ncrbug.com/826419 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-remove-track-inband.html [ Skip ]\n\ncrbug.com/825798 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-non-snap-to-lines.html [ Failure ]\n\n# This test requires a special browser flag and seems not suitable for a wpt test, see bug.\ncrbug.com/691944 external/wpt/service-workers/service-worker/update-after-oneday.https.html [ Skip ]\n\n# These tests (erroneously) see a platform-specific User-Agent header\ncrbug.com/595993 external/wpt/service-workers/service-worker/fetch-header-visibility.https.html [ Failure ]\n\ncrbug.com/619427 [ Mac ] fast/overflow/overflow-height-float-not-removed-crash3.html [ Failure Pass ]\n\ncrbug.com/660384 external/wpt/webmessaging/with-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/without-ports/001.html [ Failure ]\ncrbug.com/660384 external/wpt/webmessaging/with-options/broken-origin.html [ Failure ]\n\n# Added 2016-12-12\ncrbug.com/610835 http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html [ Failure Pass ]\n\ncrbug.com/892212 http/tests/wasm/wasm_remote_postMessage_test.https.html [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests from here ======\n# These tests are flaky when run in random order, which is the default on Linux & Mac since since 2016-12-16.\n\ncrbug.com/702837 virtual/text-antialias/aat-morx.html [ Skip ]\n\ncrbug.com/688670 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-removed.html [ Failure Pass ]\n\ncrbug.com/849670 http/tests/devtools/service-workers/service-worker-v8-cache.js [ Failure Pass Timeout ]\n\n# ====== Random order flaky tests end here ======\n\n# ====== Tests from enabling .any.js/.worker.js tests begin here ======\ncrbug.com/709227 external/wpt/html/browsers/history/the-location-interface/per-global.window.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.arc.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.closed.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.curve.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.line.worker.html [ Failure ]\ncrbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.rect.worker.html [ Failure ]\n\n# ====== Tests from enabling .any.js/.worker.js tests end here ========\n\ncrbug.com/789139 http/tests/devtools/sources/debugger/live-edit-no-reveal.js [ Crash Failure Pass Timeout ]\n\n# ====== Begin of display: contents tests ======\n\ncrbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]\n\n# ====== End of display: contents tests ======\n\n# ====== Begin of other css-display tests ======\n\ncrbug.com/995106 external/wpt/css/css-display/display-flow-root-list-item-001.html [ Failure ]\n\n# ====== End of other css-display tests ======\n\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16be.html?include=workers [ Skip Timeout ]\ncrbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16le.html?include=workers [ Skip Timeout ]\n\ncrbug.com/676229 plugins/mouse-click-plugin-clears-selection.html [ Failure Pass ]\ncrbug.com/742670 plugins/iframe-plugin-bgcolor.html [ Failure Pass ]\ncrbug.com/780398 [ Mac ] plugins/mouse-capture-inside-shadow.html [ Failure Pass ]\ncrbug.com/1331239 [ Mac ] plugins/plugin-remove-subframe.html [ Crash Pass ]\n\ncrbug.com/678493 http/tests/permissions/chromium/test-request-window.html [ Pass Timeout ]\n\ncrbug.com/689781 external/wpt/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Win ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/689781 [ Mac ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\n\ncrbug.com/1359409 [ Mac12 ] http/tests/media/video-preload-metadata.html [ Pass Timeout ]\n\ncrbug.com/1358638 [ Mac11 ] fast/scroll-behavior/middleclick-autoscroll-nested-elements.html [ Failure Pass ]\n\ncrbug.com/1157857 virtual/percent-based-scrolling/max-percent-delta-cross-origin-iframes.html [ Failure Pass Timeout ]\n\ncrbug.com/716320 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.https.html [ Failure Timeout ]\n\n# Test timing out when SharedArrayBuffer is disabled by default.\n# See https://crbug.com/1194557\ncrbug.com/1194557 http/tests/devtools/sources/debugger-breakpoints/set-breakpoint-while-blocking-main-thread.js [ Skip Timeout ]\n\n# Test output varies depending on the bot. A single expectation file doesn't\n# work.\ncrbug.com/1194557 fast/beacon/beacon-basic.html [ Failure Pass ]\n\n# Tests are failing on CodeMirror 6 update, temporarily disable to re-open the tree.\n# Restore set-breakpoint-while-blocking-main-thread.js test to previous state [ Pass ] with\n# crbug.com/1194557 annotation as soon as crbug.com/1270207 has been fixed.\ncrbug.com/1270207 virtual/portals/http/tests/devtools/portals/portals-sources-activate.js [ Skip ]\n\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success-and-failure.html [ Timeout ]\ncrbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success.html [ Timeout ]\n\ncrbug.com/831509 external/wpt/service-workers/service-worker/skip-waiting-installed.https.html [ Failure Pass ]\n\n# Fullscreen tests are failed because of consuming user activation on fullscreen\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-twice-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-elements-manual.html [ Failure ]\ncrbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html [ Failure Timeout ]\n\n# snav tests fail because of a DCHECK\ncrbug.com/985520 virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-enter-from-interest.html [ Crash ]\n\n# User-Agent is not able to be set on XHR/fetch\ncrbug.com/571722 external/wpt/xhr/preserve-ua-header-on-redirect.htm [ Failure ]\n\n# Sheriff failures 2017-03-21\ncrbug.com/703518 http/tests/devtools/tracing/worker-js-frames.js [ Failure Pass ]\ncrbug.com/674720 http/tests/loading/preload-img-test.html [ Failure Pass ]\n\n# Sheriff failures 2017-05-11\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]\ncrbug.com/724027 http/tests/security/contentSecurityPolicy/source-list-parsing-04.html [ Skip ]\n\n# Sheriff failures 2017-05-16\ncrbug.com/722212 fast/events/pointerevents/mouse-pointer-event-properties.html [ Failure Pass Timeout ]\n# Crashes on win\ncrbug.com/722943 [ Win ] media/audio-repaint.html [ Crash ]\n\n# Sheriff failures 2018-08-15\ncrbug.com/874837 [ Win ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\ncrbug.com/874837 [ Linux ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]\n\n# Sheiff failures 2021-04-09\n\ncrbug.com/715718 external/wpt/media-source/mediasource-remove.html [ Failure Pass ]\n\n# Temporarily disabled since tests don't make window key on Mac\ncrbug.com/1267867 [ Mac ] external/wpt/pointerevents/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] external/wpt/pointerlock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] http/tests/pointer-lock/* [ Skip ]\ncrbug.com/1267867 [ Mac ] pointer-lock/* [ Skip ]\n\n# Feature Policy changes fullscreen behaviour, tests need updating\ncrbug.com/718155 fullscreen/full-screen-restrictions.html [ Failure Timeout ]\n\ncrbug.com/852645 gamepad/full-screen-gamepad.html [ Timeout ]\n\ncrbug.com/1191123 gamepad/gamepad-polling-access.html [ Failure Pass ]\n\n# Feature Policy changes same-origin allowpaymentrequest behaviour, tests need updating\ncrbug.com/718155 payments/payment-request-in-iframe.html [ Failure ]\ncrbug.com/718155 payments/payment-request-in-iframe-nested-not-allowed.html [ Failure ]\n\n# Expect to fail. The test is applicable only when DigitalGoods flag is disabled.\ncrbug.com/1080870 http/tests/payments/payment-request-app-store-billing-mandatory-total.html [ Failure ]\n\n# Layout Tests on Swarming (Windows) - https://crbug.com/717347\ncrbug.com/713094 [ Win ] fast/css/fontfaceset-check-platform-fonts.html [ Failure Pass ]\n\n# Image decode failures due to document destruction.\ncrbug.com/721435 external/wpt/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html [ Skip ]\n\n# Test times out for unknown reasons on chromium-based browsers and Safari.\ncrbug.com/1328330 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-move-into-script-disabled-iframe.html [ Timeout ]\n\n# Test times out for some reason on Chromium browsers\ncrbug.com/1357623 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-zero-intersection-area.html [ Timeout ]\n\n# Sheriff failures 2017-05-23\ncrbug.com/725470 editing/shadow/doubleclick-on-meter-in-shadow-crash.html [ Crash Failure Pass ]\n\n# Sheriff failures 2017-06-14\ncrbug.com/737959 http/tests/misc/object-image-load-outlives-gc-without-crashing.html [ Failure Pass ]\n\ncrbug.com/737959 http/tests/misc/video-poster-image-load-outlives-gc-without-crashing.html [ Crash Failure Pass ]\n\n# module script lacks XHTML support\ncrbug.com/717643 external/wpt/html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml [ Failure ]\n\n# known bug: import() inside set{Timeout,Interval}\n\n# Service worker updates need to handle redirect appropriately.\ncrbug.com/889798 external/wpt/service-workers/service-worker/import-scripts-redirect.https.html [ Skip ]\n\n# Service workers need to handle Clear-Site-Data appropriately.\ncrbug.com/1052641 external/wpt/service-workers/service-worker/unregister-immediately-before-installed.https.html [ Skip ]\ncrbug.com/1052642 external/wpt/service-workers/service-worker/unregister-immediately-during-extendable-events.https.html [ Skip ]\n\n# Sheriff failures 2017-07-03\ncrbug.com/708994 http/tests/security/cross-frame-mouse-source-capabilities.html [ Pass Timeout ]\ncrbug.com/746128 [ Mac ] media/controls/video-enter-exit-fullscreen-without-hovering-doesnt-show-controls.html [ Failure Pass ]\n\n# Tests failing when enabling new modern media controls\ncrbug.com/831942 media/webkit-media-controls-webkit-appearance.html [ Failure Pass ]\ncrbug.com/832157 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-added.html [ Skip ]\ncrbug.com/832169 media/media-controls-fit-properly-while-zoomed.html [ Failure Pass ]\ncrbug.com/849694 [ Mac ] http/tests/media/controls/toggle-class-with-state-source-buffer.html [ Failure Pass ]\ncrbug.com/1348591 [ Win ] http/tests/media/controls/playback-speed-button-infinite-duration.html [ Failure Pass ]\n\n# Tests currently failing on Windows when run on Swarming\ncrbug.com/757165 [ Win ] compositing/culling/filter-occlusion-blur.html [ Skip ]\ncrbug.com/757165 [ Win ] css3/blending/mix-blend-mode-with-filters.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/download-resources.html [ Skip ]\ncrbug.com/757165 [ Win ] external/wpt/preload/preload-default-csp.sub.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/forms/file/recover-file-input-in-unposted-form.html [ Skip ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-aligned-not-aligned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-clipped-overflowed-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-only-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-white-space.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-date.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-div-scrollable-but-without-focusable-content.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-horizontally.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-vertically.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-iframe-recursive-offset-parent.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-not-focusable.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-without-image.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-overlapped-areas.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-simple.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-input.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-multiple-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-below.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-rightof.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-overlapping-elements.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio-group.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-single-select.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-symmetrically-positioned.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-textarea.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-two-elements-one-line.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] fast/spatial-navigation/snav-z-index.html [ Crash Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/devtools/sources/ui-source-code-metadata.js [ Failure Pass Timeout ]\ncrbug.com/757165 [ Win ] http/tests/misc/client-hints-accept-meta-preloader.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-accelerated-child-with-filter-child.html [ Skip ]\ncrbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-on-accelerated-layer.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified-save-restore.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/threaded-no-composited-antialiasing/animations/svg/animated-filter-svg-element.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-clipping.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-fill-style.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-global-alpha.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-image.html [ Skip ]\n# This is timing out on non-windows platforms, marked as skip on all platforms.\ncrbug.com/757165 virtual/gpu/fast/canvas/canvas-blending-gradient-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-gradient.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-image.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-color.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-pattern.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-text.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-transforms.html [ Skip ]\n# This is currently skipped on all OSes due to crbug.com/775957\n#crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-scale-drawImage-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-strokeRect-alpha-shadow.html [ Skip ]\ncrbug.com/757165 [ Win ] virtual/gpu/fast/canvas/image-object-in-canvas.html [ Skip ]\n\n# We cannot yet launch Canvas2D staying GPU on readback\ncrbug.com/1288118 fast/canvas/bug382588.html [ Skip ]\ncrbug.com/1288118 fast/canvas/canvas-gpu-consistency.html [ Skip ]\n\n# Antialiasing error\ncrbug.com/845973 virtual/display-compositor-pixel-dump/fast/canvas/display-compositor-pixel-dump/OffscreenCanvas-opaque-background-compositing.html [ Failure Pass ]\n\n# Tests occasionaly timing out (flaky) on WebKit Win7 dbg builder\ncrbug.com/757955 http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]\n\n# This test has a fixed number of time which can depend on performance.\n\ncrbug.com/669329 http/tests/devtools/tracing/timeline-js/timeline-runtime-stats.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/769347 [ Mac ] fast/dom/inert/inert-node-is-uneditable.html [ Failure ]\n\ncrbug.com/769056 virtual/text-antialias/emoji-web-font.html [ Failure ]\ncrbug.com/1159689 [ Mac ] virtual/text-antialias/emoticons.html [ Failure Pass ]\n\ncrbug.com/770232 [ Win ] virtual/text-antialias/hyphenate-character.html [ Failure ]\n\n# Editing commands incorrectly assume no plain text length change after formatting text.\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs.html [ Failure ]\ncrbug.com/764489 editing/execCommand/format-block-multiple-paragraphs-in-pre.html [ Failure ]\n\n# Previous/NextWordPosition crossing editing boundaries.\ncrbug.com/900060 editing/selection/mixed-editability-8.html [ Failure ]\n\n# WPT for the missing caretPositionFromPoint implementation\ncrbug.com/388976 external/wpt/css/cssom/caretPositionFromPoint-with-transformation.html [ Timeout ]\n\n# Sheriff failure 2017-09-18\ncrbug.com/766404 [ Mac ] plugins/keyboard-events.html [ Failure Pass ]\n\n# Layout test corrupted after Skia rect tessellation change due to apparent SwiftShader bug.\n# This was previously skipped on Windows in the section for crbug.com/757165\ncrbug.com/775957 virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]\n\n# Sheriff failures 2017-09-21\ncrbug.com/767469 http/tests/navigation/start-load-during-provisional-loader-detach.html [ Failure Pass ]\n\n# Sheriff failures 2017-10-02\ncrbug.com/771492 external/wpt/css/css-tables/table-model-fixup-2.html [ Failure ]\n\ncrbug.com/807191 fast/media/mq-color-gamut-picture.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-23\ncrbug.com/772411 http/tests/media/autoplay-crossorigin.html [ Failure Pass Timeout ]\n\n# Sheriff failures 2017-10-24\ncrbug.com/773122 crbug.com/777813 [ Win ] virtual/text-antialias/font-ascent-mac.html [ Failure Pass ]\n\n# The \"Lax+POST\" or lax-allowing-unsafe intervention for SameSite-by-default\n# cookies causes POST tests to fail.\ncrbug.com/990439 external/wpt/cookies/samesite/form-post-blank.https.html [ Failure ]\ncrbug.com/843945 external/wpt/cookies/samesite/form-post-blank-reload.https.html [ Failure ]\ncrbug.com/990439 http/tests/cookies/same-site/popup-cross-site-post.https.html [ Failure ]\n\n# Flaky Windows-only content_shell crash\ncrbug.com/1162205 [ Win ] virtual/schemeful-same-site/external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\ncrbug.com/1162205 [ Win ] external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]\n\n# Temporarily disable failing cookie control character tests until we implement\n# the latest spec changes. Specifically, 0x00, 0x0d and 0x0a should cause\n# cookie rejection instead of truncation, and the tab character should be\n# treated as a valid character.\ncrbug.com/1233602 external/wpt/cookies/attributes/attributes-ctl.sub.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/name/name-ctl.html [ Failure ]\ncrbug.com/1233602 external/wpt/cookies/value/value-ctl.html [ Failure ]\n\n# The virtual tests run with Schemeful Same-Site disabled. These should fail to ensure the disabled feature code paths work.\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-websockets.sub.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-iframe-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-subresource.tentative.html [ Failure ]\ncrbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-navigation.tentative.html [ Failure ]\n\n# These tests fail with Schemeful Same-Site due to their cross-schemeness. Skip them until there's a more permanent solution.\ncrbug.com/1141909 external/wpt/websockets/cookies/001.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/002.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/003.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/005.html?wss [ Skip ]\ncrbug.com/1141909 external/wpt/websockets/cookies/007.html?wss [ Skip ]\n\n# Sheriff failures 2017-12-04\ncrbug.com/667560 http/tests/devtools/elements/styles-4/inline-style-sourcemap.js [ Failure Pass ]\n\n# Double tap on modern media controls is a bit more complicated on Mac but\n# since we are not targeting Mac yet we can come back and fix this later.\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-backwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards-too-short.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-on-play-button.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/doubletap-to-toggle-fullscreen.html [ Skip ]\ncrbug.com/783154 [ Mac ] media/controls/click-anywhere-to-play-pause.html [ Skip ]\n\n# Seen flaky on Linux, suppressing on Windows as well\ncrbug.com/831720 [ Win ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 [ Linux ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]\ncrbug.com/831720 media/controls/tap-to-hide-controls.html [ Failure Pass ]\n\n# These tests require Unified Autoplay.\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-default-feature-policy.https.sub.html [ Skip ]\ncrbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-disabled-by-feature-policy.https.sub.html [ Skip ]\n\n# Does not work on Mac\ncrbug.com/793771 [ Mac ] media/controls/scrubbing.html [ Skip ]\n\n# Different paths may have different anti-aliasing pixels 2018-02-21\nskbug.com/7641 external/wpt/css/css-paint-api/paint2d-paths.https.html [ Failure Pass ]\n\n# Sheriff failures 2018-01-25\n# Flaking on Linux Tests, WebKit Linux Trusty (also ASAN, Leak)\ncrbug.com/805794 [ Linux ] virtual/android/url-bar/bottom-fixed-adjusted-when-showing-url-bar.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-05\ncrbug.com/809152 netinfo/estimate-multiple-frames.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-20\ncrbug.com/789921 media/controls/repaint-on-resize.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-21\ncrbug.com/814585 [ Linux ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-cjk.html [ Failure Pass ]\n\n# Sheriff failures 2018-02-22\ncrbug.com/814889 idle-callback/test-runner-run-idle-tasks.html [ Crash Pass Timeout ]\ncrbug.com/814953 fast/replaced/no-focus-ring-iframe.html [ Failure Pass ]\ncrbug.com/814964 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure Pass ]\n\n# These pass on bots with proprietary codecs (most CQ bots) while failing on bots without.\ncrbug.com/807110 external/wpt/html/semantics/embedded-content/media-elements/mime-types/canPlayType.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-addsourcebuffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-buffered.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-a-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-audio-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-framesize.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-video-bitrate.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-bitrate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framerate.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framesize.html [ Failure Pass ]\n# Failure and Pass for crbug.com/807110 and Timeout for crbug.com/727252.\ncrbug.com/727252 external/wpt/media-source/mediasource-endofstream.html [ Failure Pass Timeout ]\ncrbug.com/807110 external/wpt/media-source/mediasource-is-type-supported.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sequencemode-append-buffer.html [ Failure Pass ]\ncrbug.com/807110 external/wpt/media-source/mediasource-sourcebuffer-mode-timestamps.html [ Failure Pass ]\ncrbug.com/794338 media/video-rotation.html [ Failure Pass ]\ncrbug.com/811605 media/video-poster-after-loadedmetadata.html [ Failure Pass ]\n\n# MHT works only when loaded from local FS (file://..).\ncrbug.com/778467 [ Fuchsia ] mhtml/mhtml_in_iframe.html [ Failure ]\n\n# These tests timeout when using Scenic ozone platform.\ncrbug.com/1067477 [ Fuchsia ] fast/media/matchmedium-query-api.html [ Skip ]\ncrbug.com/1067477 [ Fuchsia ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]\n\n### See crbug.com/891427 comment near the top of this file:\n###crbug.com/816914 [ Mac ] fast/canvas/canvas-drawImage-live-video.html [ Failure Pass ]\ncrbug.com/817167 http/tests/devtools/oopif/oopif-cookies-refresh.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-03-02\ncrbug.com/818076 http/tests/devtools/oopif/oopif-elements-navigate-in.js [ Failure Pass ]\n\n# Sheriff 2018-03-05\ncrbug.com/818650 [ Linux ] wpt_internal/speech/scripted/speechrecognition-restart-onend.html [ Crash Pass ]\n\n# Prefetching Signed Exchange DevTools tests are flaky.\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch-fail.js [ Failure Pass ]\ncrbug.com/851363 http/tests/devtools/sxg/sxg-prefetch.js [ Failure Pass ]\n\n# Prefetching inspector protocol test is flaky\ncrbug.com/1347616 virtual/prefetch/http/tests/inspector-protocol/prefetch/request-will-be-sent.https.js [ Failure Pass ]\n\n# Sheriff 2018-03-22\ncrbug.com/824848 external/wpt/html/semantics/links/following-hyperlinks/activation-behavior.window.html [ Failure Pass ]\n\n# Sheriff 2018-03-26\ncrbug.com/825733 [ Win ] media/color-profile-video-seek-filter.html [ Failure Pass Timeout ]\ncrbug.com/754986 media/video-transformed.html [ Failure Pass ]\n\n# Sheriff 2018-03-29\ncrbug.com/827209 [ Win ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\ncrbug.com/827209 [ Linux ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]\n\n# Utility for manual testing, not intended to be run as part of layout tests.\ncrbug.com/785955 http/tests/credentialmanagement/tools/virtual-authenticator-environment-manual.html [ Skip ]\n\n# Sheriff 2018-04-11\ncrbug.com/831796 fast/events/autoscroll-in-textfield.html [ Failure Pass ]\n\n# Sheriff 2018-04-13\ncrbug.com/833655 [ Linux ] media/controls/closed-captions-dynamic-update.html [ Skip ]\ncrbug.com/833658 media/video-controls-focus-movement-on-hide.html [ Failure Pass ]\n\n# Sheriff 2018-05-22\ncrbug.com/845610 [ Win ] http/tests/inspector-protocol/target/target-browser-context.js [ Failure Pass ]\n\ncrbug.com/843135 virtual/gpu/fast/canvas/canvas-arc-circumference-fill.html [ Failure Pass ]\n\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-arc-circumference.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference-fill.html [ Failure ]\ncrbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference.html [ Failure ]\n\n# Sheriff 2018-05-31\ncrbug.com/848398 http/tests/devtools/oopif/oopif-performance-cpu-profiles.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-06-07\ncrbug.com/850358 http/tests/devtools/editor/text-editor-enter-behaviour.js [ Failure Pass Timeout ]\ncrbug.com/849978 http/tests/devtools/elements/styles-4/stylesheet-source-url-comment.js [ Failure Pass Timeout ]\n\n# User Activation\ncrbug.com/736415 crbug.com/1066190 external/wpt/html/user-activation/navigation-state-reset-crossorigin.sub.html [ Failure Timeout ]\ncrbug.com/736415 external/wpt/html/user-activation/navigation-state-reset-sameorigin.html [ Failure ]\n\n# S13N Sheriff 2018-7-11\ncrbug.com/862643 http/tests/serviceworker/navigation_preload/use-counter.html [ Failure Pass ]\n\n# Sheriff 2018-07-30\n\ncrbug.com/875884 [ Win ] lifecycle/background-change-lifecycle-count.html [ Failure Pass ]\n\n# Sheriff 2018-08-20\ncrbug.com/862589 virtual/threaded/fast/idle-callback/long_idle_periods.html [ Pass Timeout ]\n\n# fast/events/middleClickAutoscroll-* are failing on Mac\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click-hyperlink.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-drag.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-event-fired.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-in-iframe.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-latching.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-modal-scrollable-iframe-div.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs-forbidden.html [ Skip ]\n# The next also fails due to crbug.com/891427, thus disabled on all platforms.\ncrbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs.html [ Skip ]\ncrbug.com/874162 [ Mac ] fast/events/selection-autoscroll-borderbelt.html [ Skip ]\n\n\n# Passes in threaded mode, fails without it. This is a real bug.\ncrbug.com/1112183 fast/scrolling/autoscroll-iframe-no-scrolling.html [ Failure ]\n\n# Sheriff 2018-09-10\ncrbug.com/881207 fast/js/regress/splice-to-remove.html [ Pass Timeout ]\n\ncrbug.com/882689 http/tests/security/cookies/third-party-cookie-blocking-worker.html [ Failure Pass ]\n\n# Sheriff 2018-10-15\ncrbug.com/895257 [ Mac ] external/wpt/css/css-fonts/variations/at-font-face-font-matching.html [ Failure Pass ]\n\n# Test is flaky under load\ncrbug.com/904389 http/tests/preload/delaying_onload_link_preload_after_discovery.html [ Failure Pass ]\n\n# Sheriff 2018-11-26\ncrbug.com/908347 media/autoplay/webaudio-audio-context-resume.html [ Failure Pass ]\n\n#Sheriff 2018-12-04\ncrbug.com/911515 [ Mac ] transforms/shadows.html [ Failure Pass ]\ncrbug.com/911782 [ Mac ] paint/invalidation/forms/submit-focus-by-mouse-then-keydown.html [ Failure Pass ]\n\n# Sheriff 2018-12-06\ncrbug.com/912793 crbug.com/899087 virtual/android/fullscreen/full-screen-iframe-allowed-video.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2018-12-07\ncrbug.com/912821 http/tests/devtools/tracing/user-timing.js [ Failure Pass Timeout ]\n\n# Sheriff 2018-12-13\ncrbug.com/910452 media/controls/buttons-after-reset.html [ Failure Pass ]\n\ncrbug.com/919272 external/wpt/resource-timing/resource-timing.html [ Skip ]\n\n# Some bots are built without H264/AVC1 encoding support.\ncrbug.com/719023 fast/mediarecorder/MediaRecorder-isTypeSupported-avc1.html [ Failure Pass ]\ncrbug.com/719023 media_capabilities/encodingInfo-avc1.html [ Failure Pass ]\n\n# Sheriff 2019-01-07\ncrbug.com/919587 [ Linux ] virtual/threaded/fast/idle-callback/idle_periods.html [ Failure Pass ]\n\n# Mac doesn't support lowLatency/desynchronized Canvas Contexts.\ncrbug.com/922218 [ Mac ] fast/canvas-api/canvas-lowlatency-getContext.html [ Failure ]\n\n# Sheriff 2019-01-14\ncrbug.com/921583 http/tests/preload/meta-viewport-link-headers.html [ Failure Pass ]\n\n# These fail (some time out, some are flaky, etc.) when landing valid changes to Mojo bindings\n# dispatch timing. Many of them seem to fail for different reasons, but pretty consistently in most\n# cases it seems like a problem around test expectation timing rather than real bugs affecting\n# production code. Because such timing bugs are relatively common in tests and it would thus be very\n# difficult to land the dispatch change without some temporary breakage, these tests are disabled\ncrbug.com/922951 fast/css/pseudo-hover-active-display-none.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 fast/forms/number/number-input-event-composed.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/cache/subresource-fragment-identifier.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/devtools/tracing/timeline-network-received-data.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/history/back-to-post.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/security/cookies/basic.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 http/tests/webaudio/autoplay-crossorigin.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 media/controls/overflow-menu-hide-on-click-outside-stoppropagation.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/prefer_compositing_to_lcd_text/scrollbars/resize-scales-with-dpi-150.html [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/frame-model-instrumentation.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-record-reload.js [ Crash Failure Pass Timeout ]\ncrbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Crash Failure Pass Timeout ]\n\n# Flaky devtools test for recalculating styles.\ncrbug.com/1018177 http/tests/devtools/tracing/timeline-style/timeline-recalculate-styles.js [ Failure Pass ]\n\ncrbug.com/910979 http/tests/html/validation-bubble-oopif-clip.html [ Failure Pass ]\n\n# Sheriff 2019-02-01, 2019-02-19\n# These are crashy on Win10, and seem to leave processes lying around, causing the swarming\n# task to hang.\n\n# Recently became flaky on multiple platforms (Linux and Windows primarily)\ncrbug.com/927769 fast/webgl/OffscreenCanvas-webgl-preserveDrawingBuffer.html [ Skip ]\n\n# Sheriff 2019-02-12\ncrbug.com/1072768 media/video-played-ranges-1.html [ Failure Pass Timeout ]\n\n# These started failing when network service was enabled by default.\ncrbug.com/933880 external/wpt/service-workers/service-worker/request-end-to-end.https.html [ Failure ]\ncrbug.com/933880 http/tests/inspector-protocol/network/xhr-interception-auth-fail.js [ Failure ]\n# This passes in content_shell but not in chrome with network service disabled,\n# because content_shell does not add the about: handler. With network service\n# enabled this fails in both content_shell and chrome.\ncrbug.com/933880 http/tests/misc/redirect-to-about-blank.html [ Failure Timeout ]\n\n# Sheriff 2019-02-22\ncrbug.com/934636 http/tests/security/cross-origin-indexeddb-allowed.html [ Crash Pass ]\ncrbug.com/934818 http/tests/devtools/tracing/decode-resize.js [ Failure Pass ]\n\n# Sheriff 2019-02-28\ncrbug.com/936827 external/wpt/fullscreen/api/element-request-fullscreen-and-remove-manual.html [ Failure Pass ]\n\n# Contentful First Paint failures\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate-descendant.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale.html [ Failure ]\ncrbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale-transition.html [ Failure ]\n\n# Also crbug.com/1044535\ncrbug.com/937416 http/tests/devtools/resource-tree/resource-tree-frame-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-04\n# Also crbug.com/1044418\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\ncrbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass ]\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-05\ncrbug.com/938200 http/tests/devtools/network/network-blocked-reason.js [ Pass Timeout ]\n\n# Caused a revert of a good change.\ncrbug.com/931533 media/video-played-collapse.html [ Failure Pass ]\n\n# Sheriff 2019-03-14\ncrbug.com/806357 virtual/threaded/fast/events/pointerevents/pinch/pointerevent_touch-action-pinch_zoom_touch.html [ Crash Failure Pass Timeout ]\n\n# Trooper 2019-03-19\ncrbug.com/943388 [ Win ] http/tests/devtools/network/network-recording-after-reload-with-screenshots-enabled.js [ Failure Pass ]\n\n# Sheriff 2019-03-25\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.js [ Failure Pass ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Failure Pass Timeout ]\ncrbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Failure Pass ]\n\n# Tests using testRunner.useUnfortunateSynchronousResizeMode occasionally timeout,\n# but the test coverage is still good.\ncrbug.com/919789 fast/dom/Window/window-resize-contents.html [ Pass Timeout ]\n\ncrbug.com/1021627 fast/dom/rtl-scroll-to-leftmost-and-resize.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-03-28\ncrbug.com/946711 http/tests/devtools/editor/text-editor-search-switch-editor.js [ Failure Pass ]\ncrbug.com/946712 [ Release ] http/tests/devtools/elements/styles-2/paste-property.js [ Crash Pass Timeout ]\n\n# Sheriff 2019-04-09\ncrbug.com/946335 [ Linux ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\ncrbug.com/946335 [ Mac ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]\n\n# The postMessage() calls intended to complete the test are blocked due to being\n# cross-origin between the portal and the host..\ncrbug.com/1220891 virtual/portals/external/wpt/portals/csp/frame-src.sub.html [ Timeout ]\n\n# Sheriff 2019-04-17\ncrbug.com/953591 [ Win ] fast/forms/datalist/input-appearance-range-with-transform.html [ Failure Pass ]\ncrbug.com/953591 [ Win ] transforms/matrix-02.html [ Failure Pass ]\ncrbug.com/938884 http/tests/devtools/elements/styles-3/styles-add-blank-property.js [ Pass Timeout ]\n\n# Sheriff 2019-04-30\ncrbug.com/948785 fast/events/pointerevents/pointer-event-consumed-touchstart-in-slop-region.html [ Skip ]\n\n# This test might need to be removed.\ncrbug.com/954349 fast/forms/autofocus-in-sandbox-with-allow-scripts.html [ Timeout ]\n\n# Sheriff 2019-05-13\ncrbug.com/865432 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-blob-url.any.worker.html [ Pass Timeout ]\ncrbug.com/867532 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-data-url.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2020-05-18\ncrbug.com/988248 media/track/track-cue-rendering-position-auto.html [ Failure Pass ]\n\n# Flaky test on all platforms.\ncrbug.com/988248 media/track/track-cue-rendering-position-auto-rtl.html [ Failure Pass ]\n\n# Failing because of revert of If931c1faff528a87d8a78808f30225ebe2377072.\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/3_tracks.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_normal_wrapped.html [ Failure ]\ncrbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-line_wrapped.html [ Failure ]\n\n# Sheriff 2019-06-04\ncrbug.com/970135 [ Mac ] virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-interested-element-indicated.html [ Failure ]\ncrbug.com/970334 [ Mac ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Failure ]\ncrbug.com/970142 http/tests/security/mixedContent/insecure-css-resources.html [ Failure ]\n\n# Sheriff 2019-06-05\ncrbug.com/971259 media/controls/volumechange-stopimmediatepropagation.html [ Failure Pass ]\n\n# Expected new failures until crbug.com/535738 is fixed. The failures also vary\n# based on codecs in build config, so just marking failure here instead of\n# specific expected text results.\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-implicit.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-negative.html [ Failure ]\ncrbug.com/535738 external/wpt/media-source/mediasource-changetype-play-without-codecs-parameter.html [ Failure ]\n\n# Sheriff 2019-06-26\ncrbug.com/978966 [ Mac ] paint/markers/ellipsis-mixed-text-in-ltr-flow-with-markers.html [ Failure Pass ]\n\n# Sheriff 2019-06-27\ncrbug.com/979243 [ Mac ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]\ncrbug.com/979336 [ Mac ] fast/dynamic/anonymous-block-orphaned-lines.html [ Failure Pass ]\n\n# Sheriff 2019-07-04\ncrbug.com/981267 http/tests/devtools/persistence/persistence-move-breakpoints-on-reload.js [ Failure Pass Timeout ]\n# TODO(crbug.com/980588): reenable once WPT is fixed\ncrbug.com/980588 external/wpt/screen-orientation/lock-unlock-check.html [ Failure Pass ]\n\n# Sheriff 2019-07-26\ncrbug.com/988246 external/wpt/cookie-store/serviceworker_cookiechange_eventhandler_mismatched_subscription.tentative.https.any.serviceworker.html [ Skip ]\ncrbug.com/959129 http/tests/devtools/tracing/timeline-script-parse.js [ Failure Pass ]\n\n# WebRTC tests that fails (by timing out) because `getSynchronizationSources()`\n# on the audio side needs a hardware sink for the returned dictionary entries to\n# get updated.\n#\n# Temporarily replaced by:\n#   - WebRtcAudioBrowserTest.EstablishAudioOnlyCallAndVerifyGetSynchronizationSourcesWorks\n#   - WebRtcBrowserTest.EstablishVideoOnlyCallAndVerifyGetSynchronizationSourcesWorks\ncrbug.com/988432 external/wpt/webrtc/RTCRtpReceiver-getSynchronizationSources.https.html [ Pass Timeout ]\n\n# Sheriff 2019-07-29\ncrbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass Timeout ]\n\n# Sheriff 2019-07-31\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-shadow.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-all.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-padding.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-mask.html [ Failure ]\ncrbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-border.html [ Failure ]\n\n# Expected failures for forced colors mode tests when the corresponding flags\n# are not enabled.\ncrbug.com/970285 external/wpt/forced-colors-mode/* [ Failure ]\ncrbug.com/970285 virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/* [ Pass ]\n\n# Sheriff 2019-08-14\ncrbug.com/993671 [ Win ] http/tests/media/video-frame-size-change.html [ Failure Pass ]\n\n#Sherrif 2019-08-16\ncrbug.com/994692 [ Linux ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\ncrbug.com/994692 [ Win ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]\n\ncrbug.com/996219 [ Win ] virtual/text-antialias/emoji-vertical-origin-visual.html [ Failure ]\n\n# Sheriff 2019-08-22\ncrbug.com/994008 [ Linux ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994008 [ Win ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Linux ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\ncrbug.com/994034 [ Win ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]\n\ncrbug.com/995669 [ Win ] http/tests/media/video-throttled-load-metadata.html [ Crash Failure Pass ]\n\ncrbug.com/1015130 external/wpt/largest-contentful-paint/first-paint-equals-lcp-text.html [ Failure Pass ]\n\ncrbug.com/1000051 media/controls/volume-slider.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-09-04\ncrbug.com/1000396 [ Win ] media/video-remove-insert-repaints.html [ Failure Pass ]\n\n# Sheriff 2019-09-09\ncrbug.com/1001817 external/wpt/css/css-ui/text-overflow-016.html [ Failure Pass ]\n\n# Tests fail because of missing scroll snap for #target and bugs in scrollIntoView\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-002.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-001.html [ Failure ]\ncrbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-002.html [ Failure ]\n\n# Sheriff 2019-09-30\ncrbug.com/1003715 [ Win ] http/tests/notifications/serviceworker-notification-properties.html [ Failure Pass Timeout ]\n\n\n# Sheriff 2019-10-02\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-dom.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/parser/residual-style-hang.html [ Crash Pass ]\ncrbug.com/1010483 [ Win ] fast/selectors/specificity-overflow.html [ Crash Pass ]\n\n# Sheriff 2019-10-16\ncrbug.com/1014812 external/wpt/animation-worklet/playback-rate.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2019-10-18\ncrbug.com/1015975 media/video-currentTime.html [ Failure Pass ]\n\n# Sheriff 2019-10-21\ncrbug.com/1016456 external/wpt/dom/ranges/Range-mutations-dataChange.html [ Crash Pass Timeout ]\n\n# Sheriff 2019-10-30\ncrbug.com/1014810 [ Mac ] virtual/threaded/external/wpt/animation-worklet/stateful-animator.https.html [ Crash Pass Timeout ]\n\n# Temporarily disabled to a breakpoint non-determinism issue.\ncrbug.com/1019613 http/tests/devtools/sources/debugger/debug-inlined-scripts.js [ Failure Pass ]\n\n# First frame not always painted in time\ncrbug.com/1024976 media/controls/paint-controls-webkit-appearance-none-custom-bg.html [ Failure Pass ]\n\n# iframe.freeze plumbing is not hooked up at the moment.\ncrbug.com/907125 external/wpt/lifecycle/freeze.html [ Failure ] # wpt_subtest_failure\ncrbug.com/907125 external/wpt/lifecycle/child-out-of-viewport.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/child-display-none.tentative.html [ Failure Timeout ]\ncrbug.com/907125 external/wpt/lifecycle/worker-dispay-none.tentative.html [ Failure Timeout ]\n\n# Sheriff 2019-11-15\ncrbug.com/1025123 external/wpt/longtask-timing/longtask-in-sibling-iframe-crossorigin.html [ Failure Pass ]\n\n# Timeout media preload test until preloading media destinations gets enabled.\ncrbug.com/977033 http/tests/priorities/resource-load-priorities-media-preload.html [ Timeout ]\n\n# Sheriff 2019-11-26\ncrbug.com/1028684 http/tests/inspector-protocol/animation/animation-release.js [ Failure Pass ]\n\n# Sheriff 2019-11-29\ncrbug.com/1019079 fast/canvas/OffscreenCanvas-placeholder-createImageBitmap.html [ Failure Pass ]\ncrbug.com/1027434 external/wpt/html/browsers/origin/cross-origin-objects/cross-origin-objects.html [ Failure Pass Timeout ]\ncrbug.com/1027434 [ Mac11 ] external/wpt/html/browsers/origin/cross-origin-objects/location-properties-smoke-test.html [ Timeout ]\n\n# Sheriff 2019-12-02\ncrbug.com/1029528 [ Linux ] http/tests/devtools/network/oopif-content.js [ Failure Pass ]\n\ncrbug.com/1031345 media/controls/overlay-play-button-tap-to-hide.html [ Pass Timeout ]\n\n# Temporary SkiaRenderer regressions\ncrbug.com/1029941 [ Linux ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1029941 [ Linux ] transforms/3d/point-mapping/3d-point-mapping-deep.html [ Failure ]\ncrbug.com/1029941 [ Linux ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1029941 [ Win ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\n\n# Failing document policy tests\ncrbug.com/993790 external/wpt/document-policy/required-policy/separate-document-policies.html [ Failure ]\n\ncrbug.com/1134464 http/tests/images/document-policy/document-policy-oversized-images-edge-cases.php [ Pass Timeout ]\n\n# Skipping because of unimplemented behaviour\ncrbug.com/965495 external/wpt/feature-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\ncrbug.com/965495 external/wpt/permissions-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]\n\ncrbug.com/834302 external/wpt/permissions-policy/permissions-policy-opaque-origin.https.html [ Failure ]\n\n# Temporary suppression to allow devtools-frontend changes\ncrbug.com/1041830 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile.js [ Failure Pass ]\n\n# Sheriff 2019-12-16\ncrbug.com/1034374 http/tests/devtools/tracing/timeline-worker-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-23\ncrbug.com/1036626 http/tests/devtools/tracing/tracing-record-input-events.js [ Failure Pass ]\n\n# Sheriff 2019-12-27\ncrbug.com/1038091 virtual/gpu-rasterization/images/jpeg-yuv-image-decoding.html [ Failure Pass ]\ncrbug.com/1038139 [ Win ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\n# Broken in https://chromium-review.googlesource.com/c/chromium/src/+/1636716\ncrbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakpoints.js [ Failure Pass Timeout ]\n\ncrbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Failure Pass ]\n\n# Sheriff 2020-01-14\ncrbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Failure Pass ]\n\n# Failing origin trial for css properties test\ncrbug.com/1041993 http/tests/origin_trials/sample-api-script-added-after-css-declaration.html [ Failure ]\n\n# Sheriff 2020-01-20\ncrbug.com/1043357 http/tests/credentialmanagement/credentialscontainer-get-with-virtual-authenticator.html [ Failure Pass Timeout ]\n\n# Ref_Tests which fail when SkiaRenderer is enable, and which cannot be\n# rebaselined. TODO(jonross): triage these into any existing bugs or file more\n# specific bugs.\ncrbug.com/1043675 [ Linux ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Linux ] http/tests/media/video-frame-size-change.html [ Failure ]\ncrbug.com/1043675 [ Linux ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1043675 [ Win ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1043675 [ Win ] svg/custom/svg-root-with-opacity.html [ Failure ]\n\n# Sheriff 2020-01-23\ncrbug.com/1046784 http/tests/inspector-protocol/service-worker/target-reloaded-after-crash.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-28\ncrbug.com/1046440 fast/loader/submit-form-while-parsing-2.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-29\ncrbug.com/995663 [ Linux ] http/tests/media/autoplay/document-user-activation-cross-origin-feature-policy-header.html [ Failure Pass Timeout ]\n\n# Sheriff 2020-01-30\ncrbug.com/1047208 http/tests/serviceworker/update-served-from-cache.html [ Failure Pass ]\ncrbug.com/1047293 [ Mac ] editing/pasteboard/pasteboard_with_unfocused_selection.html [ Failure Pass ]\n\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Failure ]\ncrbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Failure ]\n\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Pass ]\ncrbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Pass ]\n\n# Swiftshader issue.\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerwidth.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screeny.html [ Crash Timeout ]\ncrbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-width.html [ Crash Timeout ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-appearance-zoom125.html [ Crash Pass ]\ncrbug.com/1048149 [ Mac ] fast/forms/color/color-picker-top-left-selection-position-after-reopen.html [ Crash Pass ]\ncrbug.com/1048149 crbug.com/1050121 [ Mac ] fast/forms/month/month-picker-appearance-zoom150.html [ Crash Failure Pass ]\n\n# SwANGLE issues\ncrbug.com/1204234 css3/blending/background-blend-mode-single-accelerated-element.html [ Failure ]\n\n# Upcoming DevTools change\ncrbug.com/1006759 http/tests/devtools/profiler/cpu-profiler-save-load.js [ Failure Pass Timeout ]\ncrbug.com/1006759 http/tests/devtools/profiler/heap-snapshot-loader.js [ Failure Pass ]\n\n# Temporarily disabled to land changes in DevTools, multiple dependent CLs\n# [1] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2049183\n# [2] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2119670\n\ncrbug.com/1049456 fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1081277 fast/scrolling/events/scrollend-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1080997 fast/scrolling/events/scrollend-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# \"in-multicol-child.html\" is laid out in legacy layout due by \"multicol\" but\n# reference is laid out by LayoutNG.\ncrbug.com/829028 [ Mac ] editing/caret/in-multicol-child.html [ Failure ]\n\n# Failing tests because of enabling scroll unification flag\n\ncrbug.com/1098383 [ Mac ] fast/events/scrollbar-double-click.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1006759 http/tests/devtools/elements/styles-1/edit-value-url-with-color.js [ Skip ]\n\n#Mixed content autoupgrades make these tests not applicable, since they check for mixed content audio/video\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/audio-tag.https.html [ Failure ]\ncrbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/video-tag.https.html [ Failure ]\ncrbug.com/1025274 http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Failure ]\n\n# Sheriff 2020-02-19\ncrbug.com/1053903 external/wpt/webxr/events_referenceSpace_reset_inline.https.html [ Failure Pass Timeout ]\n\n### Subset of scrolling tests that are failing when percent-based scrolling feature is enabled\n# Please look at FlagExpectations/enable-percent-based-scrolling for a full list of known regressions\n\n# fast/events/wheel\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure Timeout ]\n\n# fast/scrolling\ncrbug.com/1330011 virtual/main-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/mouse-scrolling-over-standard-scrollbar.html [ Failure Pass ]\n\n# fast/scrolling/events\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]\ncrbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]\ncrbug.com/1357787 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]\n\n#fast/scroll-behavior/\n\n### END PERCENT BASED SCROLLING TEST FAILURES\n\n# Sheriff 2020-02-28\ncrbug.com/1053861 http/tests/devtools/network/network-initiator-chain.js [ Failure Pass ]\n\ncrbug.com/1057822 http/tests/misc/synthetic-gesture-initiated-in-cross-origin-frame.html [ Crash Failure Pass ]\ncrbug.com/1131977 [ Mac ] http/tests/misc/hover-state-recomputed-on-main-frame.html [ Timeout ]\n\n### sheriff 2020-03-03\ncrbug.com/1058073 [ Mac ] http/tests/devtools/service-workers/sw-navigate-useragent.js [ Failure Pass ]\ncrbug.com/1058137 virtual/threaded/http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\n# Ecosystem-Infra Sheriff 2020-03-04\ncrbug.com/1058403 external/wpt/webaudio/the-audio-api/the-audioworklet-interface/suspended-context-messageport.https.html [ Crash Failure ]\n\n# Ecosystem-Infra Sheriff 2020-04-15\ncrbug.com/1070995 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/blob-data.https.html [ Failure Pass Timeout ]\n\n# navigation tests fail or time out when run with run_web_tests.py but passes with run_wpt_tests.py\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/reload.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/unloading-documents/prompt-and-unload-script-closeable.html [ Failure ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=windows-1252 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=x-cp1251 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=utf8 [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/history/joint-session-history/joint-session-history-remove-iframe.html [ Skip Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/sandboxing/window-open-blank-from-different-initiator.html [ Pass Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-click.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-mouseup.html [ Failure Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-pageshow.html [ Timeout ]\ncrbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-load.html [ Timeout ]\n\n# Tests time out, and also give different results.\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screenx.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-top-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-top.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-screenx-screeny.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-width-height.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-left.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-innerwidth-innerheight.html [ Skip Timeout ]\ncrbug.com/1299834 external/wpt/html/browsers/windows/noreferrer-window-name.html [ Skip Timeout ]\ncrbug.com/706350 external/wpt/html/browsers/windows/clear-window-name.https.html [ Skip Timeout ]\n\n# The wpt/html tests that are failing in some way\ncrbug.com/1317074 [ Linux ] external/wpt/html/syntax/charset/without-inheritance.html [ Failure ]\ncrbug.com/1317074 external/wpt/html/syntax/charset/after-head-after-1kb-crlf.html [ Failure ]\ncrbug.com/1317076 external/wpt/html/syntax/speculative-charset/speculative-script.tentative.html [ Failure ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/header-parsing.https.html [ Failure Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-embedder-policy/credentialless/reporting-subresource-corp.https.window.html [ Pass Timeout ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-unsafe-none.https.html [ Skip Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-subresource-corp.https.html [ Pass Timeout ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-navigation.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure Pass ]\ncrbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/report-only-require-corp.https.html [ Failure Pass ]\ncrbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-same-origin.https.html [ Skip Timeout ]\ncrbug.com/1287036 [ Win10.20h2 ] external/wpt/html/cross-origin-embedder-policy/cross-origin-isolated-permission.https.html [ Timeout ]\ncrbug.com/1287036 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/multi-globals/workers-coep-report.https.html [ Failure Pass ]\ncrbug.com/1265587 external/wpt/html/user-activation/activation-trigger-pointerevent.html?pen [ Failure ]\ncrbug.com/1270351 external/wpt/html/user-activation/activation-trigger-pointerevent.html?touch [ Failure ]\ncrbug.com/1159661 external/wpt/html/interaction/focus/document-level-focus-apis/document-has-system-focus.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-serviceworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.https.html [ Timeout ]\ncrbug.com/1317079 [ Linux ] external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel.https.html [ Failure ]\ncrbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.https.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/location-set-and-document-open.html [ Timeout ]\ncrbug.com/1223883 external/wpt/html/webappapis/animation-frames/cancel-handle-manual.html [ Skip ]\ncrbug.com/1223883 external/wpt/html/webappapis/user-prompts/newline-normalization-manual.html [ Skip ]\ncrbug.com/1222729 external/wpt/html/dom/elements/global-attributes/dir_auto-N-EN-ref.html [ Failure ]\ncrbug.com/678633 external/wpt/html/browsers/history/the-location-interface/location-protocol-setter-non-broken.html [ Failure ]\ncrbug.com/1317071 [ Mac ] virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-no-port.sub.https.html [ Failure Timeout ]\ncrbug.com/1323989 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-cross-document-traversal.html [ Pass Timeout ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_1-2.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_3-4.html [ Failure ]\ncrbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_7-8.html [ Failure ]\ncrbug.com/1350975 external/wpt/html/dom/directionality/bdi-element-invalid-dir.html [ Failure ]\n\n\n# Sheriff 2020-03-06\ncrbug.com/1059262 virtual/threaded/http/tests/worklet/webexposed/global-interface-listing-paint-worklet.html [ Failure Pass ]\ncrbug.com/1059262 [ Mac ] webexposed/global-interface-listing-platform-specific.html [ Failure Pass ]\n\n# Sheriff 2020-03-08\ncrbug.com/1059645 external/wpt/pointerevents/pointerevent_coalesced_events_attributes.html [ Failure Pass ]\n\n# [virtual/...]external/wpt/web-animation test flakes\ncrbug.com/1064065 virtual/threaded/external/wpt/css/css-animations/event-dispatch.tentative.html [ Failure Pass ]\n\n# Sheriff 2020-04-01\ncrbug.com/1066122 virtual/threaded-no-composited-antialiasing/animations/events/animation-iteration-event.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-x-in-scrolling-div.html [ Failure Pass ]\ncrbug.com/1066732 fast/events/platform-wheelevent-paging-y-in-scrolling-div.html [ Failure Pass ]\n\n# Temporarily disabled for landing changes to DevTools frontend\ncrbug.com/1066579 http/tests/devtools/har-importer.js [ Failure Pass ]\n\n# COOP top navigation:\ncrbug.com/1153648 external/wpt/html/cross-origin-opener-policy/navigate-top-to-aboutblank.https.html [ Failure ]\n\n# Stale revalidation shouldn't be blocked:\ncrbug.com/1079188 external/wpt/fetch/stale-while-revalidate/revalidate-not-blocked-by-csp.html [ Timeout ]\n\n# the inspector-protocol/media tests only work in the virtual test environment.\ncrbug.com/1074129 inspector-protocol/media/media-player.js [ Timeout ]\n\n# Sheriff 2020-05-04\ncrbug.com/952717 [ Debug ] http/tests/xmlhttprequest/redirect-cross-origin-post.html [ Failure Pass ]\n\n# Sheriff 2020-05-18\ncrbug.com/1084256 [ Linux ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084256 [ Mac ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]\ncrbug.com/1084276 [ Mac ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Crash Failure Pass ]\n\n# Temporarily disabled to land the new wasm exception handling JS API\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/exception/* [ Skip ]\ncrbug.com/v8/11992 external/wpt/wasm/jsapi/tag/* [ Skip ]\n\n# Assorted virtual/threaded/.../wpt/scroll-animations tests\ncrbug.com/1279648 [ Mac ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-iframe.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors-writing-mode-rl.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-descriptors.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-quirks-mode.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-frame-size-changed.html [ Failure ]\ncrbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-inline-orientation.html [ Failure ]\ncrbug.com/1279648 [ Mac12 ] virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-iframe.html [ Failure ]\n\ncrbug.com/1071189 [ Debug ] editing/selection/programmatic-selection-on-mac-is-directionless.html [ Pass Timeout ]\n\n# Sheriff 2020-05-27\ncrbug.com/1046784 http/tests/devtools/elements/styles/stylesheet-tracking.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-05-29\ncrbug.com/1084637 compositing/video/video-reflection.html [ Failure Pass ]\ncrbug.com/1083362 compositing/reflections/load-video-in-reflection.html [ Failure Pass ]\ncrbug.com/1087471 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Failure Pass ]\n\n# Sheriff 2020-06-01\n# Also see crbug.com/626703, these timed-out before but now fail as well.\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure Pass ]\ncrbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure Pass ]\n\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRect.html [ Failure Pass ]\ncrbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRectPartial.html [ Failure Pass ]\n\n# Sheriff 2020-06-03\ncrbug.com/1007228 [ Mac ] external/wpt/fullscreen/api/element-request-fullscreen-and-move-to-iframe-manual.html [ Failure Pass ]\ncrbug.com/1349215 [ Mac11 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\ncrbug.com/1349215 [ Mac10.15 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]\n\n# Sheriff 2020-06-06\ncrbug.com/1091843 fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2020-06-09\ncrbug.com/1093003 [ Mac ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe.sub.html [ Failure Pass ]\n\n# Sheriff 2020-06-11\ncrbug.com/1093026 [ Linux ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Failure Pass ]\n\n# Ecosystem-Infra Rotation 2020-06-15\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-stroke-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-fill-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-border-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-content-box.html [ Failure ]\ncrbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-stroke-box.html [ Failure ]\n\n# Sheriff 2020-06-17\ncrbug.com/1092975 http/tests/inspector-protocol/target/target-expose-devtools-protocol.js [ Failure Pass ]\n\ncrbug.com/1096493 external/wpt/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https.html [ Failure ]\n\ncrbug.com/1097005 http/tests/devtools/console/console-object-preview.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-preserve-scroll.js [ Crash Failure Pass Timeout ]\ncrbug.com/1097005 http/tests/devtools/console/console-search.js [ Crash Failure Pass Timeout ]\n\ncrbug.com/1093445 http/tests/loading/pdf-commit-load-callbacks.html [ Failure Pass ]\ncrbug.com/1093497 http/tests/history/client-redirect-after-push-state.html [ Failure Pass ]\n\n#Sheriff 2020-06-25\ncrbug.com/1010170 media/video-played-reset.html [ Failure Pass ]\n\n# Sheriff 2020-07-07\n# Additionally disabled on mac due to crbug.com/988248\ncrbug.com/1083302 media/controls/volumechange-muted-attribute.html [ Failure Pass ]\n\n# Sheriff 2020-07-10\n\ncrbug.com/1102167 external/wpt/fetch/redirect-navigate/preserve-fragment.html [ Pass Timeout ]\n\n# Sheriff 2020-07-13\n\ncrbug.com/1104910 fast/peerconnection/RTCPeerConnection-reload-interesting-usage.html [ Failure Pass ]\ncrbug.com/1104910 [ Mac ] editing/selection/selection-background.html [ Failure Pass ]\n\n# Sheriff 2020-07-14\n\ncrbug.com/1105271 [ Mac ] scrollbars/custom-scrollbar-adjust-on-inactive-pseudo.html [ Failure Pass ]\ncrbug.com/1105274 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile-no-url-end-to-end.js [ Failure Pass Timeout ]\n\n# This test fails due to the linked bug since input is now routed through the compositor.\ncrbug.com/1112508 fast/forms/number/number-wheel-event.html [ Failure ]\n\n# Sheriff 2020-07-20\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-time/timeline-time.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidations.js [ Failure Pass ]\ncrbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidator-invalidations.js [ Failure Pass ]\n\n# Sheriff 2020-07-22\ncrbug.com/1107722 [ Mac ] virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\ncrbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-script-id.js [ Failure Pass ]\n\n# Failing on Webkit Linux Leak\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\ncrbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]\n\n# Sheriff 2020-07-23\ncrbug.com/1108786 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\ncrbug.com/1108786 [ Linux ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]\n\n# Sheriff 2020-07-27\ncrbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]\n\ncrbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Failure Pass ]\n\n# Sheriff 2020-08-03\ncrbug.com/1106429 virtual/percent-based-scrolling/max-percent-delta-page-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-05\ncrbug.com/1113050 fast/borders/border-radius-mask-video-ratio.html [ Failure Pass ]\ncrbug.com/1113127 fast/canvas/downsample-quality.html [ Crash Failure Pass ]\n\n# Sheriff 2020-08-06\ncrbug.com/1113791 [ Win ] media/video-zoom.html [ Failure Pass ]\n\n# Sheriff 2020-08-17\ncrbug.com/1069546 [ Mac ] compositing/layer-creation/overflow-scroll-overlap.html [ Failure Pass ]\n\n# Unexpected demuxer success after M86 FFmpeg roll.\ncrbug.com/1117613 media/video-error-networkState.html [ Failure Timeout ]\n\n# Sheriff 2020-0-21\ncrbug.com/1120330 virtual/threaded/external/wpt/feature-policy/experimental-features/vertical-scroll-disabled-scrollbar-tentative.html [ Failure Pass ]\n\ncrbug.com/1122582 external/wpt/html/cross-origin-opener-policy/coop-csp-sandbox-navigate.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-09\ncrbug.com/1126709 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.html [ Failure Pass ]\n\n# Sheriff 2020-09-22\ncrbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.worker.html [ Failure Pass ]\n\ncrbug.com/1136163 [ Linux ] external/wpt/pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock.html [ Failure ]\n\n# Mixed content autoupgrades make these tests not applicable, since they check for mixed content images, the tests can be removed when cleaning up pre autoupgrades mixed content code.\ncrbug.com/1042877 external/wpt/fetch/cross-origin-resource-policy/scheme-restriction.https.window.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/mixed-content/imageset.https.sub.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/img-tag.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-css-image-with-reload.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-iframe.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/preload-insecure-image-in-main-frame-blocked.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-blocked.https.html [ Timeout ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-in-frame-blocked.https.html [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-reportonly.https.php [ Failure ]\ncrbug.com/1042877 http/tests/security/mixedContent/strict-mode-via-pref-image-blocked.https.html [ Failure ]\n\ncrbug.com/1046784 http/tests/devtools/sources/debugger/anonymous-script-with-source-map-breakpoint.js [ Failure Pass ]\n\n# Mixed content autoupgrades cause test to fail because test relied on http subresources to test a different origin, needs to be changed to not rely on HTTP URLs.\ncrbug.com/1042877 http/tests/security/img-crossorigin-redirect-credentials.https.html [ Failure ]\n\n# Sheriff 2020-10-09\ncrbug.com/1136687 external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture.html [ Failure Pass ]\n\ncrbug.com/1137228 [ Mac ] external/wpt/infrastructure/testdriver/click_iframe_crossorigin.sub.html [ Failure Pass ]\n\n# Rename document.featurePolicy to document.permissionsPolicy\ncrbug.com/1123116 external/wpt/permissions-policy/payment-supported-by-permissions-policy.tentative.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-all.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-self.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some-override.https.sub.html [ Failure ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some.https.sub.html [ Failure Timeout ]\ncrbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-disallowed-for-all.https.sub.html [ Failure Timeout ]\n\ncrbug.com/1159445 [ Mac ] paint/invalidation/repaint-overlay/layers-overlay.html [ Failure ]\n\n#Sheriff 2020-10-21\ncrbug.com/1141206 scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]\n\n#Sheriff 2020-10-26\ncrbug.com/1142877 [ Mac ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\ncrbug.com/1142877 [ Debug Linux ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]\n\n# Sheriff 2020-11-04\ncrbug.com/1144273 http/tests/devtools/sources/debugger-ui/continue-to-location-markers-in-top-level-function.js [ Failure Pass Timeout ]\n\n# Sheriff 2020-11-06\ncrbug.com/1146560 [ Mac ] fast/canvas/color-space/canvas-createImageBitmap-e_srgb.html [ Failure Pass ]\n\n# Sheriff 2020-11-16\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/debugger-inline-values-frames.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/reveal-execution-line.js [ Failure Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.html [ Pass Timeout ]\ncrbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.worker.html [ Pass Timeout ]\ncrbug.com/1150475 fast/dom/open-and-close-by-DOM.html [ Failure Pass ]\n\n#Sheriff 2020-11-23\n# Sheriff 2021-01-22 added Timeout per crbug.com/1046784:\ncrbug.com/1149734 http/tests/devtools/sources/source-frame-toolbar-items.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-frameworks/frameworks-sourcemap.js [ Failure Pass ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/continue-to-location-markers.js [ Failure Pass Timeout ]\ncrbug.com/1149734 http/tests/devtools/sources/debugger-ui/inline-scope-variables.js [ Failure Pass Timeout ]\n\n#Sheriff 2020-11-24\ncrbug.com/1087242 crbug.com/1271141 http/tests/inspector-protocol/service-worker/network-extrainfo-main-request.js [ Pass Timeout ]\ncrbug.com/1149771 [ Linux ] virtual/android/fullscreen/video-scrolled-iframe.html [ Failure Pass Timeout ]\ncrbug.com/1152532 http/tests/devtools/service-workers/user-agent-override.js [ Pass Timeout ]\n\n#Sheriff 2020-11-26\ncrbug.com/1032451 virtual/threaded-no-composited-antialiasing/animations/stability/animation-iteration-event-destroy-renderer.html [ Pass Timeout ]\ncrbug.com/931646 [ Mac ] http/tests/preload/meta-viewport-link-headers-imagesrcset.html [ Failure Pass ]\n\n# These tests will only run in the virtual test suite where the frequency\n# capping for overlay popup detection is disabled. This eliminates the need\n# for waitings in web tests to trigger a detection event.\ncrbug.com/1032681 http/tests/subresource_filter/overlay_popup_ad/* [ Skip ]\ncrbug.com/1032681 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/* [ Pass ]\n\n# DevTools roll\ncrbug.com/1144171 http/tests/devtools/report-API-errors.js [ Skip ]\n\n# Sheriff 2020-12-11\n# Flaking on Linux Trusty\ncrbug.com/1157861 http/tests/devtools/extensions/extensions-resources.js [ Failure Pass ]\ncrbug.com/1157861 http/tests/devtools/console/paintworklet-console-selector.js [ Failure Pass ]\n\n# Wpt importer Sheriff 2020-12-11\ncrbug.com/626703 [ Linux ] wpt_internal/storage/estimate-usage-details-filesystem.https.tentative.any.html [ Failure Pass ]\n\n# Wpt importer sheriff 2021-01-05\ncrbug.com/1163175 external/wpt/css/css-pseudo/first-letter-punctuation-and-space.html [ Failure ]\n\n# Sheriff 2021-01-12\ncrbug.com/1163793 http/tests/inspector-protocol/page/page-events-associated.js [ Failure Pass ]\n\n# Sheriff 2021-01-15\ncrbug.com/1167222 http/tests/websocket/multiple-connections-throttled.html [ Failure Pass ]\ncrbug.com/1167309 fast/canvas/canvas-createImageBitmap-drawImage.html [ Failure Pass ]\n\n# Sheriff 2021-01-20\ncrbug.com/1168522 external/wpt/focus/iframe-activeelement-after-focusing-out-iframes.html [ Failure Pass ]\n\n# DevTools roll\ncrbug.com/1050549 http/tests/devtools/console/console-correct-suggestions.js [ Failure Pass ]\n\n# Flaky test\ncrbug.com/1173439 http/tests/devtools/service-workers/service-worker-manager.js [ Pass Timeout ]\n\n# V8 roll\ncrbug.com/961059 fast/workers/worker-shared-asm-buffer.html [ Skip ]\n\ncrbug.com/1341227 [ Mac ] http/tests/workers/worker-invalid-context.html [ Skip ]\n\n# Temporarily disabled to unblock https://crrev.com/c/2979697\ncrbug.com/1222114 http/tests/devtools/console/console-dir.js [ Failure Pass ]\ncrbug.com/1222114 http/tests/devtools/console/console-format.js [ Failure Pass ]\n\ncrbug.com/1247844 external/wpt/css/css-contain/content-visibility/content-visibility-input-image.html [ Skip ]\n\n# Expected to fail with SuppressDifferentOriginSubframeJSDialogs feature disabled, tested in VirtualTestSuite\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/confirm-different-origin-frame.sub.html [ Failure ]\ncrbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-different-origin-frame.sub.html [ Failure ]\n\n# Sheriff 2021-01-27\ncrbug.com/1171331 [ Mac ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]\n\n# flaky test\ncrbug.com/1173956 http/tests/xsl/xslt-transform-with-javascript-disabled.html [ Failure Pass ]\n\n# No support for key combinations like Alt + c in testdriver.Actions for content_shell\ncrbug.com/893480 external/wpt/uievents/interface/keyboard-accesskey-click-event.html [ Timeout ]\n\n# No support for Drag-and-Drop handlers being called.\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/004.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/006.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/007.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/008.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/009.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/010.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/015.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/016.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/017.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/018.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/021.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/023.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/images/024.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/001.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/002.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/003.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/005.html [ Timeout ]\ncrbug.com/1353435 external/wpt/html/editing/dnd/canvas/007.html [ Timeout ]\n\n# Sheriff 2021-02-11\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause.js [ Failure Pass ]\ncrbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause-infinite.js [ Failure Pass ]\n\n# Sheriff 2021-02-15\ncrbug.com/1177996 [ Linux ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\ncrbug.com/1178018 external/wpt/webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html [ Failure Pass ]\n\n# Expected to fail - Chrome's WebXR Depth Sensing API implementation does not currently support `gpu-optimized` usage mode.\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_dataUnavailable.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_inactiveFrame.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_incorrectUsage.https.html [ Failure ]\ncrbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_staleView.https.html [ Failure ]\n\n# Sheriff 2021-02-17\ncrbug.com/1179117 [ Linux ] http/tests/devtools/a11y-axe-core/sources/scope-pane-a11y-test.js [ Pass Timeout ]\n\n# Sheriff 2021-02-19\ncrbug.com/1180227 [ Mac ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Crash Failure Pass ]\ncrbug.com/1180227 [ Linux ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Failure Pass ]\n\ncrbug.com/1180274 crbug.com/1046784 [ Win ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1180274 crbug.com/1046784 [ Linux ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]\ncrbug.com/1341227 [ Mac ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2021-02-21\ncrbug.com/1180491 [ Linux ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\ncrbug.com/1180491 [ Linux ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-02-24\ncrbug.com/1181857 external/wpt/webaudio/the-audio-api/the-analysernode-interface/test-analyser-output.html [ Failure Pass ]\n\n# Sheriff 2021-02-25\ncrbug.com/1182682 [ Linux ] http/tests/devtools/service-workers/service-workers-view.js [ Failure Pass ]\n\n# Sheriff 2021-03-08\ncrbug.com/1092462 [ Linux ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]\ncrbug.com/1092462 [ Linux ] media/video-seek-past-end-paused.html [ Failure Pass ]\n\ncrbug.com/1185051 fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob-worker.html [ Failure Pass ]\n\n# Expect failure for unimplemented canvas color object input\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.transparency.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.html [ Failure ]\ncrbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.transparency.html [ Failure ]\n\n# Sheriff 2021-03-17\ncrbug.com/1072022 http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change.html [ Pass Timeout ]\n\n# Sheriff 2021-03-19\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints.js [ Failure Pass Timeout ]\ncrbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.js [ Failure Pass Timeout ]\ncrbug.com/1190176 [ Linux ] fast/peerconnection/RTCPeerConnection-addMultipleTransceivers.html [ Crash Failure Pass ]\n\ncrbug.com/1176039 [ Mac ] virtual/stable/media/stable/video-object-fit-stable.html [ Failure Pass ]\n\ncrbug.com/1190905 [ Mac ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Linux ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\ncrbug.com/1190905 [ Win ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]\n\n# Sheriff 2021-03-31\n# Failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-01\n# More failing tests because of enabling scroll unification flag\n\n# Sheriff 2021-04-06\ncrbug.com/1032451 [ Linux ] virtual/threaded/animations/stability/animation-iteration-event-destroy-renderer.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-04-07\ncrbug.com/1196620 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video-sibling.html [ Failure Pass ]\n\n# WebTransport tests should eventually run when the WebTransport WPT server is added.\ncrbug.com/1201569 external/wpt/webtransport/* [ Skip ]\ncrbug.com/1201569 wpt_internal/webtransport/* [ Skip ]\n# WebTransport server infra tests pass on python3 but fail on python2.\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.serviceworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.sharedworker.html [ Failure Pass ]\ncrbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.worker.html [ Failure Pass ]\n\ncrbug.com/1194958 fast/events/mouse-event-buttons-attribute.html [ Failure Pass ]\n\n# Sheriff 2021-04-08\ncrbug.com/1197087 external/wpt/web-animations/interfaces/Animation/finished.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 external/wpt/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\ncrbug.com/1197087 virtual/threaded/external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]\n\n# Sheriff 2021-04-09\ncrbug.com/1197528 pointer-lock/pointerlockchange-pointerlockerror-events.html [ Failure Pass ]\n\ncrbug.com/1195295 fast/events/touch/multi-touch-timestamp.html [ Failure Pass ]\n\ncrbug.com/1196745 [ Mac10.15 ] editing/selection/editable-links.html [ Skip ]\n\n# Is fixed by PlzDedicatedWorker.\ncrbug.com/1060837 external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Timeout ]\ncrbug.com/1060837 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Pass ]\n\ncrbug.com/1143102 virtual/plz-dedicated-worker/http/tests/inspector-protocol/fetch/dedicated-worker-main-script.js [ Skip ]\n\n# These timeout because COEP reporting to a worker is not implemented.\ncrbug.com/1197041 external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\ncrbug.com/1197041 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]\n\n# Sheriff 2021-04-12\n\ncrbug.com/1193979 [ Mac ] fast/events/tabindex-focus-blur-all.html [ Failure Pass ]\ncrbug.com/1196201 fast/events/mouse-event-source-device-event-sender.html [ Failure Pass ]\n\n# Sheriff 2021-04-13\ncrbug.com/1198698 external/wpt/clear-site-data/storage.https.html [ Pass Timeout ]\n\n# Sheriff 2021-04-14\n\n# Sheriff 2021-04-15\ncrbug.com/1196118 plugins/mouse-move-over-plugin-in-frame.html [ Failure Pass ]\ncrbug.com/1199528 http/tests/inspector-protocol/css/css-edit-redirected-css.js [ Failure Pass ]\ncrbug.com/1196317 [ Mac ] scrollbars/custom-scrollbar-thumb-width-changed-on-inactive-pseudo.html [ Failure Pass ]\n\n# Sheriff 2021-04-21\ncrbug.com/1201225 external/wpt/pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.html [ Failure Pass Timeout ]\ncrbug.com/1201346 http/tests/origin_trials/webexposed/bfcache-experiment-http-header-origin-trial.php [ Failure Pass ]\ncrbug.com/1201365 virtual/portals/http/tests/inspector-protocol/portals/device-emulation-portals.js [ Pass Timeout ]\n\n# Sheriff 2021-04-22\ncrbug.com/1191990 http/tests/serviceworker/clients-openwindow.html [ Failure Pass ]\n\n# Sheriff 2021-04-23\n\n# Image pixels are sometimes different on Fuchsia.\ncrbug.com/1201123 [ Fuchsia ] tables/mozilla/bugs/bug1188.html [ Failure Pass ]\n\n# Sheriff 2021-04-26\n\n# Sheriff 2021-04-29\ncrbug.com/1203963 [ Mac10.14 ] external/wpt/webusb/idlharness.https.any.html [ Failure Pass Timeout ]\n\n# Appears to be timing out even when marked as Slow.\ncrbug.com/1205184 [ Mac11 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\ncrbug.com/1205184 [ Mac12 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]\n\n# Sheriff 2021-05-03\ncrbug.com/1205012 external/wpt/html/cross-origin-opener-policy/reporting/access-reporting/reporting-observer.html [ Pass Timeout ]\ncrbug.com/1093041 fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass ]\ncrbug.com/1093041 virtual/gpu/fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-05-10\n\n# Sheriff 2021-05-04\ncrbug.com/1205659 [ Mac ] external/wpt/IndexedDB/key-generators/reading-autoincrement-indexes.any.worker.html [ Pass Timeout ]\n\n# Blink_web_tests 2021-05-06\ncrbug.com/1205669 [ Mac10.13 ] virtual/threaded/external/wpt/animation-worklet/idlharness.any.worker.html [ Failure ]\n\n# Sheriff 2021-05-07\n# Some plzServiceWorker and plzDedicatedWorker singled out from generic sheriff rounds above\n\n# Sheriff 2021-05-10\ncrbug.com/1207709 [ Mac10.13 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Failure Pass Timeout ]\n\n# For SkiaRenderer on MacOS\ncrbug.com/1208173 [ Mac ] animations/animation-paused-hardware.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-first-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] animations/missing-values-last-keyframe.html [ Failure ]\ncrbug.com/1208173 [ Mac ] css3/filters/backdrop-filter-boundary.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] svg/custom/svg-root-with-opacity.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-rotation.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]\ncrbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]\n\n# Fix to unblock wpt-importer\ncrbug.com/1209223 [ Mac ] external/wpt/url/a-element.html [ Pass Timeout ]\ncrbug.com/1209223 external/wpt/url/url-constructor.any.worker.html [ Pass Timeout ]\n\n# Sheriff 2021-05-17\ncrbug.com/1210199 http/tests/devtools/elements/elements-panel-restore-selection-when-node-comes-later.js [ Failure Pass ]\ncrbug.com/1199522 http/tests/devtools/layers/layers-3d-view-hit-testing.js [ Failure Pass ]\n\n# Failing css-transforms-2 web platform tests.\ncrbug.com/847356 external/wpt/css/css-transforms/transform-box/view-box-mutation-001.html [ Failure ]\n\n# Started failing after rolling new version of check-layout-th.js\ncss3/flexbox/perpendicular-writing-modes-inside-flex-item.html [ Failure ]\n\n# JXL tests fail due to rounding error differences.\n# TODO(https://crbug.com/1274220): Rebaseline all images once new tone mapping\n# lands.\ncrbug.com/1210658 virtual/jxl-enabled/images/jxl/jxl-images.html [ Skip ]\ncrbug.com/1358616 virtual/jxl-enabled/images/jxl/progressive.html [ Skip ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3099011\ncrbug.com/1199701 http/tests/devtools/console/console-big-array.js [ Skip ]\n\n# Sheriff 2021-11-15\ncrbug.com/1270362 http/tests/devtools/sources/debugger-ui/debugger-inline-values.js [ Failure Pass Timeout ]\n\n# The wpt_flags=h2 variants of these tests fail, but the other variants pass. We\n# can't handle this difference with -expected.txt files, so we have to list them\n# here.\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1000.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-2999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-3000-verify-code.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-server-initiated-close.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Close-server-initiated-close.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Close-undefined.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-extensions-empty.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-string.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Create-valid-url.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-65K-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-65K-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-float64.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float64.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-data.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-null.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/Send-unicode-data.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.worker.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/extended-payload-length.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/001.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/002.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/binary/005.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/events/018.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Fuchsia ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac11 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Mac12-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\ncrbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]\n\n# Sheriff on 2021-05-26\ncrbug.com/1213322 [ Mac ] external/wpt/css/css-values/minmax-percentage-serialize.html [ Failure Pass ]\ncrbug.com/1213322 [ Mac ] external/wpt/html/browsers/the-window-object/named-access-on-the-window-object/window-named-properties.html [ Failure Pass ]\n\n# Do not retry slow tests that also timeouts\ncrbug.com/1210687 [ Mac10.15 ] fast/events/open-window-from-another-frame.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] storage/websql/sql-error-codes.html [ Pass Timeout ]\ncrbug.com/1210687 [ Mac10.15 ] external/wpt/html/user-activation/propagation-crossorigin.sub.html [ Pass Timeout ]\n\n# Sheriff 2021-06-02\ncrbug.com/1215575 [ Mac11 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215575 [ Mac12 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]\ncrbug.com/1215584 [ Mac11 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1215584 [ Mac12 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\n\n# Fail with field trial testing config.\ncrbug.com/1219767 [ Linux ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure ]\n\n# Sheriff 2021-06-03\ncrbug.com/1185121 fast/scroll-snap/animate-fling-to-snap-points-1.html [ Failure Pass ]\ncrbug.com/1176162 http/tests/devtools/screen-orientation-override.js [ Failure Pass ]\ncrbug.com/1215949 external/wpt/pointerevents/pointerevent_iframe-touch-action-none_touch.html [ Pass Timeout ]\ncrbug.com/1216139 http/tests/devtools/bfcache/bfcache-elements-update.js [ Failure Pass ]\n\n# Sheriff 2021-06-10\ncrbug.com/1177996 [ Mac10.15 ] storage/websql/database-lock-after-reload.html [ Failure Pass ]\n\n# CSS Highlight API painting issues related to general CSS highlight\n# pseudo-elements painting\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004.html [ Failure ]\ncrbug.com/1163437 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html [ Failure ]\ncrbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html [ Failure ]\ncrbug.com/1147859 [ Linux ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004-2.html [ Failure ]\ncrbug.com/1147859 [ Linux ] paint/custom-highlight-only-inheritance.html [ Failure ]\ncrbug.com/1147859 [ Linux ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\ncrbug.com/1147859 [ Mac ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]\n\n\n# Green Mac11 Test\ncrbug.com/1201406 [ Mac11 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 [ Mac12 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]\ncrbug.com/1201406 http/tests/credentialmanagement/publickeycredential-same-origin-with-ancestors.html [ Crash Pass Timeout ]\n\n# Sheriff 2021-06-14\ncrbug.com/1219499 external/wpt/websockets/Create-blocked-port.any.html?wpt_flags=h2 [ Failure Pass Timeout ]\ncrbug.com/1219499 [ Win ] external/wpt/websockets/Create-blocked-port.any.html?wss [ Pass Timeout ]\n\n# Sheriff 2021-06-15\ncrbug.com/1220007 [ Linux ] fullscreen/full-screen-iframe-allowed-video.html [ Failure Pass Timeout ]\n\n# Sheriff\ncrbug.com/1222097 external/wpt/mediacapture-image/detached-HTMLCanvasElement.html [ Skip ]\ncrbug.com/1222097 http/tests/canvas/captureStream-on-detached-canvas.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/blob.https.html [ Skip ]\ncrbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/worker-inheritance.sub.https.html [ Skip ]\ncrbug.com/1222097 external/wpt/uievents/order-of-events/mouse-events/mouseover-out.html [ Skip ]\n\n# Sheriff 2021-06-25\n# Flaky on Webkit Linux Leak\ncrbug.com/1223601 [ Linux ] fast/scrolling/autoscroll-latch-clicked-node-if-parent-unscrollable.html [ Failure Pass ]\ncrbug.com/1223601 [ Linux ] fast/scrolling/reset-scroll-in-onscroll.html [ Failure Pass ]\n\n# Sheriff 2021-06-29\n# Flaky on Mac11 Tests\ncrbug.com/1197464 [ Mac ] plugins/refcount-leaks.html [ Failure Pass ]\n\n# Sheriff 2021-07-05\ncrbug.com/1226445 [ Mac ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\n# Sheriff 2021-07-07\n\n# Sheriff 2021-07-12\ncrbug.com/1228432 [ Linux ] external/wpt/video-rvfc/request-video-frame-callback-before-xr-session.https.html [ Pass Timeout ]\n\n# Depends on fixing WPT cross-origin iframe click flake in crbug.com/1066891.\ncrbug.com/1227710 external/wpt/bluetooth/requestDevice/cross-origin-iframe.sub.https.window.html [ Failure Pass ]\n\n# Cross-origin WebAssembly module sharing is getting deprecated.\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-similar-but-cross-origin-success.sub.html [ Skip ]\ncrbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-domain-success.sub.html [ Skip ]\n\n# Sheriff 2021-07-13\n\n# A number of http/tests/inspector-protocol/network tests are flaky.\ncrbug.com/1196027 http/tests/inspector-protocol/network/request-interception.js [ Failure Pass ]\ncrbug.com/1228246 http/tests/inspector-protocol/network/request-interception-frame-id.js [ Failure Pass Timeout ]\n\n# linux_layout_tests_layout_ng_disabled needs its own baselines.\ncrbug.com/1231699 [ Linux ] fast/borders/border-inner-bleed.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video-shadow.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] fast/reflections/opacity-reflection-transform.html [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/focus-ring.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] svg/custom/transformed-outlines.svg [ Failure Pass ]\ncrbug.com/1231699 [ Linux ] virtual/text-antialias/color-emoji.html [ Failure Pass ]\n\n# Other devtools flaky tests outside of http/tests/inspector-protocol/network.\ncrbug.com/1228261 http/tests/inspector-protocol/browser-grant-permissions.js [ Failure Pass Timeout ]\n\n# Flakes that might be caused or aggravated by PlzServiceWorker\ncrbug.com/996511 external/wpt/service-workers/cache-storage/window/cache-abort.https.html [ Crash Failure Pass ]\ncrbug.com/996511 external/wpt/service-workers/service-worker/getregistrations.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-07-14\ncrbug.com/1229039 [ Linux ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\ncrbug.com/1229039 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]\n\n# Test fails due to more accurate size reporting in heap snapshots.\ncrbug.com/1229212 inspector-protocol/heap-profiler/heap-samples-in-snapshot.js [ Failure ]\n\n# Sheriff 2021-07-15\ncrbug.com/1229666 external/wpt/html/semantics/forms/form-submission-0/urlencoded2.window.html [ Pass Timeout ]\ncrbug.com/1093027 http/tests/credentialmanagement/credentialscontainer-create-with-virtual-authenticator.html [ Crash Failure Pass Timeout ]\n# The next test was originally skipped on mac for lack of support (crbug.com/613672). It is now skipped everywhere due to flakiness.\ncrbug.com/1229708 fast/events/pointerevents/pointer-event-in-slop-region.html [ Skip ]\n# pause-on-elements-panel.js is marked as Slow, so it's required to also be Skipped due to it Timing out.\ncrbug.com/1229725 http/tests/devtools/sources/debugger-pause/pause-on-elements-panel.js [ Crash Failure Pass Timeout ]\ncrbug.com/1085647 external/wpt/pointerevents/compat/pointerevent_mouse-pointer-preventdefault.html [ Pass Timeout ]\ncrbug.com/1087232 http/tests/devtools/network/network-worker-fetch-blocked.js [ Failure Pass ]\ncrbug.com/1229802 fast/events/pointerevents/multi-touch-events.html [ Failure Pass ]\ncrbug.com/1181886 external/wpt/pointerevents/pointerevent_movementxy.html?* [ Failure Pass Timeout ]\n\n# Sheriff 2021-07-21\ncrbug.com/1231431 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure ]\n\n# Sheriff 2021-07-22\ncrbug.com/1222097 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]\ncrbug.com/1231989 [ Linux ] external/wpt/html/cross-origin-embedder-policy/shared-workers.https.html [ Failure Pass ]\n\n# Sheriff 2021-07-28\ncrbug.com/1234057 external/wpt/css/css-paint-api/no-op-animation.https.html [ Failure Pass ]\n\n# Temporarily disabling progress based worklet animation tests.\ncrbug.com/1238130 animations/animationworklet/playback-rate-scroll-timeline-accelerated-property.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dispose.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-dynamic-update.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-compositable.html [ Timeout ]\ncrbug.com/1238130 animations/animationworklet/scroll-timeline-non-scrollable.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/inactive-timeline.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/scroll-timeline-writing-modes.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-creation.https.html [ Failure ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-root-scroller.https.html [ Timeout ]\ncrbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline.https.html [ Timeout ]\n\n# Sheriff 2021-07-29\ncrbug.com/626703 http/tests/security/cross-frame-access-put.html [ Failure Pass ]\n\n# Sheriff 2021-07-30\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio+video.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio.https.sub.html [ Failure ]\ncrbug.com/1234619 external/wpt/screen-capture/permissions-policy-video.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-02\ncrbug.com/1215390 [ Linux ] external/wpt/pointerevents/pointerevent_pointerId_scope.html [ Failure Pass ]\n\n# Sheriff 2021-08-12\ncrbug.com/1237640 http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Pass Timeout ]\ncrbug.com/1239175 http/tests/navigation/same-and-different-back.html [ Failure Pass ]\ncrbug.com/1239164 http/tests/inspector-protocol/network/navigate-iframe-in2in.js [ Failure Pass ]\ncrbug.com/1237909 external/wpt/webrtc-svc/RTCRtpParameters-scalability.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-19\ncrbug.com/1234315 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Failure Timeout ]\n\n# Sheriff 2021-08-20\ncrbug.com/1194498 http/tests/misc/iframe-script-modify-attr.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2021-08-23\ncrbug.com/1242243 external/wpt/css/css-paint-api/parse-input-arguments-018.https.html [ Crash Failure Pass ]\n\n# Sheriff 2021-08-25\ncrbug.com/1243128 [ Win ] external/wpt/web-share/disabled-by-permissions-policy.https.sub.html [ Failure ]\n\n# Sheriff 2021-08-26\ncrbug.com/1243707 [ Debug Linux ] http/tests/inspector-protocol/target/auto-attach-related-sw.js [ Crash Pass ]\n\n# Sheriff 2021-09-03\ncrbug.com/1246351 http/tests/misc/scroll-cross-origin-iframes-scrollbar.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-09-06\n# All of these suffer from the same problem of of a\n# DCHECK(!snapshot.drawsNothing()) failing on Macs:\n# Also reported as failing via crbug.com/1233766\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Crash Failure Pass Timeout ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-keyframes.https.html [ Crash Failure Pass ]\n# Previously reported as fialing via crbug.com/626703:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-immediately.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-timing.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/1233766 on Mac11:\n# Previously reported as failing via crbug.com/626703 on Mac10.15:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-2.https.html [ Crash Failure Pass ]\n# Also reported as failing via crbug.com/1233766:\ncrbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-cancel.https.html [ Crash Failure Pass ]\n# Previously reported as failing via crbug.com/626703:\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-before-start.https.html [ Crash Failure Pass ]\ncrbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html [ Crash Failure Pass ]\n\n# [CompositeClipPathAnimations] failing test\ncrbug.com/1249071 virtual/composite-clip-path-animation/external/wpt/css/css-masking/clip-path/animations/clip-path-animation-filter.html [ Crash Failure Pass ]\n\n# Following tests fail on mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/image-src-change.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-oversized-images-forced-layout.php [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/transformed-document-element.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/codec-tests/webm/webm-decode.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-detune-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-playbackrate-modulation.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] webaudio/Oscillator/no-dezippering.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/color/color-picker-escape-cancellation-revert.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/dom/geometry-interfaces-dom-matrix-rotate.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-021.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-025.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-004.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-replaces-poster.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Failures that surfaced on the mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\n\n# Flakes that surfaced on the mac12 and mac12-arm64 waterfall\ncrbug.com/1249176 [ Mac12 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/service-worker-controlled-after-restore.https.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12 ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe-in-multicol.sub.html [ Failure Pass ]\n\n# Sheriff 2022-07-04\ncrbug.com/1341689 [ Linux ] media/controls/overflow-menu-focus.html [ Failure Pass ]\n\n# Following tests timeout on mac11-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Timeout ]\n\n# Flaky tests in mac11-arm64 or mac12-arm64\ncrbug.com/1249176 [ Mac11-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/12-55.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]\ncrbug.com/1249176 virtual/gpu-rasterization/images/color-profile-image-filter-all.html [ Skip ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]\n\n# mac-arm CI 10-01-2021\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/opened-document-security-origin-resets-on-navigation.html [ Timeout ]\n\n# mac-arm CI 10-05-2021\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/no-alloc-direct-call/fast/canvas/canvas-lost-gpu-context.html [ Failure ]\ncrbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] svg/animations/animate-setcurrenttime.html [ Crash ]\n\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac11-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\ncrbug.com/1249176 [ Mac12-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]\n\n#devtool flaky test crbug.com/1046784\ncrbug.com/1046784 [ Mac12 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2021-09-16\ncrbug.com/1250457 [ Mac ] storage/websql/open-database-set-empty-version.html [ Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/portals/http/tests/devtools/portals/portals-console.js [ Failure Pass Timeout ]\ncrbug.com/1250457 [ Mac ] virtual/prefer_compositing_to_lcd_text/scrollbars/custom-scrollbar-inactive-pseudo.html [ Timeout ]\n\ncrbug.com/1249622 external/wpt/largest-contentful-paint/initially-invisible-images.html [ Failure ]\ncrbug.com/1249622 virtual/initially-invisible-images-lcp/external/wpt/largest-contentful-paint/initially-invisible-images.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Pass ]\ncrbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Failure ]\ncrbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Pass ]\n\n# FileSystemHandle::move() is temporarily disabled outside of the Origin Private File System\ncrbug.com/1247850 external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Linux ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Mac11 ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\ncrbug.com/1247850 [ Win ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]\n# FileSystemHandle::move() is temporarily disabled for directory handles\ncrbug.com/1250534 external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]\ncrbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]\n\n# crbug.com/1293591: Many virtual/gpu-rasterization/images/* tests are flaky\ncrbug.com/1293591 images/color-profile-animate-rotate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-animate.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-cross-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-repeat.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-background-image-space.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-border-fade.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-clip.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-group.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-iframe.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas-pattern.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-canvas.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-image-shape.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-mask-image-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-object.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg-fill-text.html [ Failure Pass ]\ncrbug.com/1293591 images/color-profile-svg.html [ Failure Pass ]\ncrbug.com/1293591 images/jpeg-with-color-profile.html [ Failure Pass ]\n\n# crbug.com/1339051: some ref tests generate output with minor differences.\ncrbug.com/1339051 [ Linux ] compositing/text-on-scaled-layer.html [ Failure ]\ncrbug.com/1339051 [ Linux ] external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] fast/forms/color/color-picker-appearance-zoom125.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/backface-visibility-interop/external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/content-with-transform-new-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/object-view-box-old-image.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/view-transition/wpt_internal/view-transition/web-animations-api.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/oopr-canvas2d/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html [ Failure ]\ncrbug.com/1339051 [ Linux ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces.html [ Failure ]\n\n# Sheriff 2021-09-27\n# Revisit once crbug.com/1123886 is addressed.\n# Likely has the same root cause for crashes.\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]\ncrbug.com/1233826 external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]\ncrbug.com/930462 external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\ncrbug.com/930462 virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]\n\n# Sheriff 2021-09-29\n\n# Sheriff 2021-10-01\ncrbug.com/1255221 http/tests/devtools/elements/styles-4/svg-style.js [ Failure Pass ]\n\n# Skip devtools test hitting an unexpected tracing infrastructure exception 2021-10-04\ncrbug.com/1255679 http/tests/devtools/service-workers/service-workers-wasm-test.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-10-05\ncrbug.com/1256755 http/tests/xmlhttprequest/cross-origin-unsupported-url.html [ Failure Pass ]\ncrbug.com/1256770 [ Mac ] svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr.html [ Failure Pass ]\n\n# Disabled to allow devtools-frontend roll\ncrbug.com/1258618 virtual/portals/http/tests/devtools/portals/portals-elements-nesting-after-adoption.js [ Skip ]\n\n# Sheriff 2021-10-06\ncrbug.com/1257298 svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ Failure Pass ]\n\n# Sheriff 2021-10-12\ncrbug.com/1259133 [ Mac10.14 ] external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\ncrbug.com/1259133 [ Mac10.14 ] virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]\n\n# Data URL navigation within Fenced Frames currently crashed in the MPArch implementation.\ncrbug.com/1243568 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/window-data-url-navigation.https.html [ Timeout ]\n\n# Fragment navigations are treated as same-document in ShadowDOM because it doesn't distinguish embedder-initiated navigations.\ncrbug.com/1262022 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/fragment-navigation.https.html [ Timeout ]\n\n# Sheriff 2021-10-15, 2021-12-07\ncrbug.com/1256763 [ Win ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Mac ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\ncrbug.com/1256763 [ Linux ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]\n\ncrbug.com/1260393 [ Mac ] virtual/oopr-canvas2d/fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]\n\n# Sheriff 2021-10-19\ncrbug.com/1256763 [ Linux ] images/color-profile-background-clip-text.html [ Failure Pass ]\ncrbug.com/1259277 fast/events/message-port-multi.html [ Skip ]\n\n# Sheriff 2021-10-26\ncrbug.com/1263732 http/tests/devtools/tracing/timeline-paint/timeline-paint-image.js [ Failure Pass ]\n\n# Sheriff 2021-10-29\ncrbug.com/1264670 [ Linux ] http/tests/devtools/resource-tree/resource-tree-frame-add.js [ Failure Pass ]\n\n# TODO(https://crbug.com/1265311): Make the test behave the same way on all platforms\ncrbug.com/1265311 http/tests/navigation/location-change-repeated-from-blank.html [ Failure Pass ]\n\n# Sheriff 2021-11-03\ncrbug.com/1266221 [ Mac11-arm64 ] virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemFileHandle-create-sync-access-handle.https.tentative.window.html [ Failure Pass ]\n\n# Sheriff 2021-11-09\ncrbug.com/1269535 http/tests/misc/resource-timing-sizes-multipart.html [ Failure Pass Timeout ]\n\n# This test is flaky on all platforms\ncrbug.com/1191846 [ Mac11 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Mac12 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]\ncrbug.com/1191846 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass ]\n\n# Sheriff 2021-11-10\ncrbug.com/1268963 [ Linux ] external/wpt/resource-timing/object-not-found-after-TAO-cross-origin-redirect.html [ Failure Pass ]\n\n# Sheriff 2021-11-12\ncrbug.com/1268594 [ Linux ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Mac ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\ncrbug.com/1268594 [ Win ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]\n\n# Security OWP fixit week\ncrbug.com/1270355 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/009.html [ Timeout ]\n\n# Sheriff 2021-11-18\ncrbug.com/1180993 external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-19\ncrbug.com/1186771 [ Mac ] fast/scroll-snap/snaps-after-scrollbar-scrolling-track.html [ Crash ]\ncrbug.com/894077 [ Linux ] virtual/android/fullscreen/video-fixed-background.html [ Failure Pass ]\ncrbug.com/1271336 external/wpt/native-io/detach_iframe_during_open.https.window.html [ Crash Pass ]\n\n# Sheriff 2021-11-22\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-test.js [ Failure Pass Timeout ]\ncrbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/stale-revalidation-test.js [ Failure Pass Timeout ]\ncrbug.com/1272380 http/tests/devtools/bindings/bindings-multiple-frames.js [ Failure Pass ]\n\n# Flaky on mac\ncrbug.com/1263709 [ Mac ] http/tests/devtools/elements/node-xpath.js [ Failure ]\n\n# Flaky on Mac and Windows\ncrbug.com/1272199 external/wpt/websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\ncrbug.com/1272203 external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]\n\n# Times out flakily on all platforms. Previously marked slow, crbug.com/874695.\ncrbug.com/1272801 http/tests/permissions/chromium/test-request-sharedworker.html [ Pass Timeout ]\n\n# Flaky with setTimeout without clamp\ncrbug.com/1272955 http/tests/devtools/extensions/extensions-timeline-api.js [ Failure Pass ]\ncrbug.com/1302309 external/wpt/streams/transferable/writable-stream.html [ Failure Pass ]\n\n# Test is very flaky (score of 223).\ncrbug.com/1274919 http/tests/inspector-protocol/page/consecutive-navigate.js [ Failure Pass Timeout ]\n\n# Sheriff 2021-11-23\ncrbug.com/1046784 http/tests/devtools/tracing/timeline-receive-response-event.js [ Failure Pass ]\n\n# Sheriff 2021-11-24\ncrbug.com/1273541 fast/block/float/float-on-clean-line-subsequently-dirtied.html [ Failure Pass ]\n\n# Sheriff 2021-11-26\ncrbug.com/1201879 [ Linux ] http/tests/inspector-protocol/issues/mixed-content-issue-creation-js-within-oopif.js [ Failure Pass Timeout ]\ncrbug.com/1274171 inspector-protocol/debugger/debugger-setTimeout-sourceUrl-dedicated-worker-loop.js [ Pass Timeout ]\ncrbug.com/1271485 http/tests/inspector-protocol/network/load-network-resource-different-frame-cookie.js [ Failure Pass Timeout ]\ncrbug.com/1228803 [ Linux ] fast/peerconnection/RTCPeerConnection-garbagecollected.html [ Failure Pass ]\n\n# Sheriff 2021-11-29\ncrbug.com/1274458 external/wpt/audio-output/selectAudioOutput-permissions-policy.https.sub.html [ Failure Pass ]\ncrbug.com/1239485 [ Mac ] fast/frames/iframe-plugin-load-remove-document-crash.html [ Failure Pass ]\n\n# Sheriff 2021-12-01\ncrbug.com/1275658 http/tests/misc/script-after-slow-stylesheet-removed.html [ Failure Pass ]\ncrbug.com/1275716 [ Mac ] fast/forms/text-control-intrinsic-widths.html [ Failure Pass ]\n\n# Sheriff 2021-12-02\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-top-left.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-screenx-screeny.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-innerheight-innerwidth.html [ Skip ]\ncrbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-width-height.html [ Skip ]\ncrbug.com/1275967 [ Linux ] external/wpt/permissions-policy/permissions-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1275944 [ Mac ] http/tests/devtools/sources/debugger-ui/reveal-not-skipped.js [ Failure Pass ]\ncrbug.com/1276207 virtual/gpu-rasterization/images/color-profile-image-object-fit.html [ Failure Pass ]\ncrbug.com/1276208 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-fillPath-alpha-shadow.html [ Pass Timeout ]\ncrbug.com/1276290 [ Mac ] wpt_internal/mediastream/mediastreamtrackprocessor-transfer-to-worker.html [ Skip ]\n\n# Sheriff 2021-12-03\n\ncrbug.com/1277973 http/tests/xmlhttprequest/uri-resolution-opera-open-007.html [ Crash Failure Pass ]\n\n# Sheriff 2021-12-13\ncrbug.com/1279586 [ Mac ] external/wpt/IndexedDB/idbobjectstore-rename-abort.html [ Failure ]\n\ncrbug.com/1159463 crbug.com/1278570 [ Linux ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac11 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1159463 crbug.com/1278570 [ Mac12 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\n\n# Sheriff 2021-12-21\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.canvas.source-out.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.clip.xor.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.operation.darker.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.uncovered.pattern.source-in.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.null.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.wrongtype.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.clearRect.path.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.fillRect.zero.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large-manual.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-4.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.hsl-5.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.gradient.object.current.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.round.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.square.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.miter.obtuse.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/fill-and-stroke-styles/2d.fillStyle.parse.current.notrendered.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-drawImage-offscreenCanvas.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/pixel-manipulation/2d.imageData.get.order.cols.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/text-styles/2d.text.font.parse.tiny.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/transformations/2d.transformation.transform.multiply.html [ Crash Pass ]\ncrbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-ImageBitmap-cloned.html [ Pass Timeout ]\ncrbug.com/1281782 virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-video.html [ Skip ]\ncrbug.com/1281792 external/wpt/event-timing/min-duration-threshold.html [ Failure Pass ]\n\ncrbug.com/1285857 plugins/plugin-destroyed-enumerate.html [ Failure Pass ]\n\n# Sheriff 2021-12-22\ncrbug.com/1179857 [ Linux ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Mac10.13 ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]\ncrbug.com/1179857 [ Win ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Pass Timeout ]\n\n# Sheriff 2021-12-22\ncrbug.com/1283295 [ Mac ] fast/text-autosizing/hackernews-comments.html [ Failure Pass ]\n\n# Sheriff 2021-12-30\ncrbug.com/1229096 [ Win ] fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\n\n# Sheriff 2022-01-04\ncrbug.com/1283865 external/wpt/webmessaging/without-ports/020.html [ Failure Pass ]\n\n# Sheriff 2022-01-05\ncrbug.com/1284572 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-module-test.js [ Failure Pass Timeout ]\n\n# Incomplete support for mouse wheel in test_driver.\ncrbug.com/1285411 external/wpt/css/css-scroll-snap/input/mouse-wheel.html [ Timeout ]\n\n# Sheriff 2022-01-07\ncrbug.com/1285438 fast/layers/clip-rects-transformed.html [ Failure Pass ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-browser-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-navigate.js [ Crash Failure Pass Timeout ]\ncrbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-subresource.js [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-01-12\ncrbug.com/1286619 [ Mac ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]\n\ncrbug.com/1225606 virtual/sanitizer-api-namespaces/external/wpt/sanitizer-api/sanitizer-names.https.tentative.html [ Failure ]\n\n# Temporarily disabled to unblock https://crrev.com/c/3657449\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-frame-navigate.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/bindings-main-frame-navigated.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/contentscripts-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-bindings-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/dynamic-navigator-frame-attach-detach.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-bindings-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/jssourcemap-navigator-overlapping-sources.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/shadowdom-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-bindings-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/sourcemap-navigator-multiple-frames.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-bindings.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/bindings/suspendtarget-navigator.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger/network-uisourcecode-provider.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-panel.js [ Failure Pass ]\ncrbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-with-same-source-url.js [ Failure Pass ]\n\n# Sheriff 2022-01-17\ncrbug.com/1233938 http/tests/notifications/click-shared-worker.html [ Pass Timeout ]\n# Temporarily disable test to allow fixing of devtools path escaping\ncrbug.com/1094436 http/tests/devtools/overrides/project-added-with-existing-files-bind.js [ Failure Timeout ]\ncrbug.com/1256763 virtual/gpu-rasterization/images/color-profile-background-image-cover.html [ Failure Pass ]\n\n# Sheriff 2022-01-18\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/redirect-loop-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/window/thorough/cors-preflight2-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/fetch/serviceworker/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1288264 [ Win ] http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html [ Pass Timeout ]\n\n# Flakiness of WIP MediaStreamTrack on workers.\ncrbug.com/1290767 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-pipes-data-in-worker.https.html [ Crash Pass ]\ncrbug.com/1290976 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-shared-worker.https.html [ Crash Pass ]\ncrbug.com/1291850 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-service-worker.https.html [ Crash Pass ]\n\n# Temporarily disable tests to land branded types related changes.\ncrbug.com/1253323 [ Win ] http/tests/devtools/sources/debugger-breakpoints/nodejs-set-breakpoint.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/persistence/automapping-urlencoded-paths.js [ Skip ]\ncrbug.com/1253323 http/tests/devtools/sources/debugger/navigator-view.js [ Skip ]\n\n# Sheriff 2022-01-26\ncrbug.com/1290978 [ Win ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Mac ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\ncrbug.com/1290978 [ Linux ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-02-01\n# Flaky test on Mac\ncrbug.com/1292843 [ Mac ] external/wpt/css/css-transforms/animation/perspective-origin-interpolation.html [ Failure Pass ]\ncrbug.com/1292844 [ Mac ] external/wpt/css/css-writing-modes/alt-display-vertical-001-manual.html [ Failure Pass ]\ncrbug.com/1292865 [ Mac ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Failure Pass ]\ncrbug.com/1292869 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/audioparam-cancel-and-hold.html [ Failure Pass ]\ncrbug.com/1292871 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/k-rate-dynamics-compressor-connections.html [ Failure Pass ]\ncrbug.com/1292873 [ Mac ] html/selectmenu/selectmenu-slot-warning-button.html [ Failure Pass ]\ncrbug.com/1292874 [ Mac ] html/selectmenu/selectmenu-slot-warning-listbox.html [ Failure Pass ]\ncrbug.com/1292876 [ Mac ] http/tests/devtools/console/console-time.js [ Failure Pass ]\n\ncrbug.com/1038139 [ Linux ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\ncrbug.com/1038139 [ Mac ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]\n\ncrbug.com/1309664 virtual/no-forced-frame-updates/external/wpt/html/dom/render-blocking/render-blocked-apis-by-preload-link.tentative.html [ Failure ]\n\n# Sheriff 2022-02-08\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-fixed-scrolling.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-opacity-overlay.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] compositing/video/video-controls-squashing.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video-seek.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/controls/video-overlay-cast-light-rendering.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] media/video-zoom.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/2-comp.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-jpeg-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-canvas.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/motion-jpeg-single-frame.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-jpeg-with-adobe-marker-only.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/webp-color-profile-lossless.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image-profile-match.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-profile-border-image.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-colorspace-hw.html [ Failure ]\ncrbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-hw.html [ Failure ]\n\n# Sheriff 2022-02-09\ncrbug.com/1295707 http/tests/devtools/elements/elements-treeoutline-copy.js [ Failure Pass ]\n\n# Disable to skip performance test caused by potential O(n^2) problem in AXObjectCacheImpl::ChildrenChanged\ncrbug.com/1293714 external/wpt/css/selectors/invalidation/has-complexity.html [ Skip ]\n\n# Sheriff 2022-02-16\ncrbug.com/1297416 [ Mac Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Linux Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\ncrbug.com/1297416 [ Release Win10.20h2 ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]\n\n# Sheriff 2022-02-22\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/serviceworker/thorough/redirect-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/window/thorough/cors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299858 [ Win ] http/tests/fetch/workers/thorough/cookie-nocors-base-https-other-https.html [ Pass Timeout ]\ncrbug.com/1299948 [ Mac ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]\ncrbug.com/1299972 [ Linux ] screen_orientation/screenorientation-unsupported-no-crash.html [ Failure Pass Timeout ]\n\n# Disable flaky test for further investigation\ncrbug.com/1229801 http/tests/devtools/elements/css-rule-hover-highlights-selectors.js [ Failure Pass ]\n\n# Sheriff 2022-03-03\ncrbug.com/1302571 virtual/threaded/http/tests/devtools/isolated-code-cache/cross-origin-test.js [ Skip ]\n\n# Sheriff 2022-03-04\ncrbug.com/1302856 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-png-with-cmyk-color-profile.html [ Failure Pass ]\n\ncrbug.com/1298836 external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\ncrbug.com/1298836 virtual/plz-dedicated-worker/external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]\n\n# Anonymous iframe:\n#------------------\n#\n# Anonymous iframe > CacheStorage:\n# From two same-origin-different-partition context, the second `cache.put`\n# request hangs indefinitely.\ncrbug.com/1285275 external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\ncrbug.com/1285275 virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]\n\n# Sheriff 2022-03-10\ncrbug.com/1304956 storage/indexeddb/dont-wedge.html [ Failure Pass ]\n\n# Sheriff 2022-03-15\ncrbug.com/626703 external/wpt/scroll-to-text-fragment/force-load-at-top.html [ Pass Timeout ]\ncrbug.com/1269534 fast/spatial-navigation/snav-zero-margin-content.html [ Failure Pass ]\ncrbug.com/1295980 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1295980 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]\ncrbug.com/1298633 http/tests/inspector-protocol/network/cross-origin-isolation/coep-load-error-reporting-worker.js [ Pass Timeout ]\n\n# Sheriff 2022-03-18\ncrbug.com/1290040 external/wpt/service-workers/service-worker/same-site-cookies.https.html [ Skip ]\n\n# WebAudio flaky timeout (crbug.com/1307741)\ncrbug.com/1307741 [ Mac ] external/wpt/webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-routing.html [ Timeout ]\ncrbug.com/1307741 webaudio/AudioParam/audioparam-k-rate.html [ Timeout ]\n\n# WebAudio internals flaky GC (crbug.com/1312164)\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-wrapper.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/scriptprocessornode-premature-death.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-close.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-gc.html [ Skip ]\ncrbug.com/1312164 webaudio/internals/audiocontext-gc.html [ Skip ]\n\n# Sheriff 2022-03-21: More flaky tests.\ncrbug.com/1272376 [ Mac ] plugins/plugin-document-back-forward.html [ Failure Pass ]\n\n# Tests that need updates due to rounding math in layout\ncrbug.com/1309975 http/tests/devtools/console/console-viewport-indices.js [ Failure ]\ncrbug.com/1309975 http/tests/devtools/console/viewport-testing/console-stick-to-bottom-expand-object.js [ Failure ]\n\n# Sheriff 2022-03-23: More flaky tests.\ncrbug.com/1309483 [ Win ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]\ncrbug.com/1309633 [ Mac ] external/wpt/FileAPI/url/url-lifetime.html [ Failure ]\n\n# Sheriff 2022-03-24\ncrbug.com/1309756 http/tests/images/force-reload.html [ Skip ]\ncrbug.com/1309756 [ Mac11-arm64 ] http/tests/images/force-reload-image-document.html [ Skip ]\n\n# Sheriff 2022-03-25\ncrbug.com/1197296 [ Linux ] virtual/unified-autoplay/external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\ncrbug.com/1197296 [ Linux ] external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]\n\n# Sheriff 2022-03-28\ncrbug.com/1311015 [ Mac ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311015 [ Win ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]\ncrbug.com/1311128 external/wpt/paint-timing/fcp-only/fcp-document-opacity-text.html [ Skip ]\n\n# Navigation API incorrectly leaves promises forever unsettled (crbug.com/1311786)\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-parent.html [ Skip ]\ncrbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-sibling.html [ Skip ]\n\n# Scroll Unification known issues (go/su-web-tests) for enabling in test:\ncrbug.com/1311431 [ Mac ] fast/scroll-behavior/overscroll-behavior.html [ Failure Pass ]\ncrbug.com/1248581 fast/scrolling/resize-corner-tracking-touch.html [ Failure Pass ]\ncrbug.com/1312036 virtual/hidpi/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure Pass ]\n\n# These tests fail on SwiftShader FEMU due to a change in log/exp implementation.\ncrbug.com/1311456 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit.html [ Skip ]\ncrbug.com/1311456 [ Fuchsia ] tables/mozilla/core/bloomberg.html [ Skip ]\n\n# Sheriff 2022-04-01\ncrbug.com/1312266 [ Mac10.13 ] external/wpt/preload/preload-time-to-fetch.https.html [ Failure ]\n\n# Sheriff 2022-04-05\ncrbug.com/1203491 [ Linux ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1203491 [ Win ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\ncrbug.com/1313282 inspector-protocol/input/dispatchMouseEvent.js [ Failure Pass Timeout ]\ncrbug.com/1095540 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]\ncrbug.com/1254163 [ Mac10.13 ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure ]\ncrbug.com/1313396 [ Linux ] external/wpt/dom/events/Event-dispatch-on-disabled-elements.html [ Failure Pass ]\ncrbug.com/1194945 external/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]\ncrbug.com/1244896 fast/mediacapturefromelement/CanvasCaptureMediaStream-set-size-too-large.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-06\ncrbug.com/1290670 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-mandatory-getStats.https.html [ Failure Pass ]\ncrbug.com/1313894 [ Mac10.14 ] rootscroller/root-scroller-paint-order.html [ Failure Pass ]\ncrbug.com/1314130 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]\n\n# Sheriff 2022-04-07\ncrbug.com/1314314 virtual/percent-based-scrolling/fast/scrolling/scrollbars/mouse-autoscrolling-on-deleted-scrollbar.html [ Skip ]\ncrbug.com/1314323 [ Win ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scrolling-over-custom-scrollbar.html [ Skip ]\n\ncrbug.com/1313970 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure ]\n\n# Sheriff 2022-04-08\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-image.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-tiled-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode-tiled.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-2.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-gradient.html [ Failure Pass ]\n\n# Sheriff 2022-04-11\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-color.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-crossfade-image-gradient.html [ Failure Pass ]\ncrbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-color.html [ Failure Pass ]\n\n# Sheriff 2022-04-12\ncrbug.com/1315300 [ Linux ] http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Failure Pass ]\n\n# HighlightOverlayPainting: decoration painting hasn\u2019t landed yet.\ncrbug.com/1147859 virtual/css-highlight-overlay-painting/wpt_internal/css/css-pseudo/target-text-001.html [ Failure ]\n\ncrbug.com/1316341 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\ncrbug.com/1316341 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-04-18, failing on Mac and WebKit Win10 builders.\ncrbug.com/1317007 external/wpt/mimesniff/mime-types/charset-parameter.window.html [ Failure Pass ]\n\n# Sheriff 2022-04-18\n# TODO(crbug.com/1316144): [Crash] Re-enable this test\n# TODO(crbug.com/1334265): [Failure] Bug fix temporarily reverted while compat issues are worked out\ncrbug.com/1316144 external/wpt/css/cssom-view/scrollIntoView-fixed.html [ Crash Failure Pass ]\n\ncrbug.com/1296449 [ Linux Release ] external/wpt/workers/SharedWorker-MessageEvent-source.any.sharedworker.html [ Skip ]\n\n# Sheriff 2022-04-20\ncrbug.com/1253971 [ Mac ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-parts-structure.tentative.html [ Timeout ]\n\n# Sheriff 2022-04-21\ncrbug.com/1318318 external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318318 virtual/plz-dedicated-worker/external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]\ncrbug.com/1318561 [ Linux ] external/wpt/x-frame-options/get-decode-split.html [ Failure Pass ]\n\n# Temp disable MST transfer tests until Browser feature can be enabled in tests\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]\ncrbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer.https.html [ Skip ]\n# Explicit PASS expectation for the virtual suite, to stop it inheriting \"Skip\".\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Pass ]\ncrbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-audio-transfer.https.html [ Pass ]\n\n# Sheriff 2022-04-22\ncrbug.com/1318695 http/tests/devtools/elements/highlight/highlight-multiple-css-grid.js [ Failure Pass ]\ncrbug.com/1318929 http/tests/devtools/console/console-uncaught-promise.js [ Failure Pass ]\ncrbug.com/1282966 http/tests/security/mixedContent/insecure-plugin-in-iframe.html [ Failure Pass ]\ncrbug.com/1318952 http/tests/inspector-protocol/fetch/fetch-samesite-cookies.js [ Failure Pass ]\n\n# Imported WPT crashes on desktop platforms\ncrbug.com/1318456 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\ncrbug.com/1318456 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319320 rootscroller/root-scroller-apply-filter-to-parent.html [ Failure Pass ]\n\n# Sheriff 2022-04-25\ncrbug.com/1319808 virtual/wbn-from-network/external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Skip ]\n\n# Sheriff 2022-04-26\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]\ncrbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]\ncrbug.com/1288741 external/wpt/scroll-to-text-fragment/find-range-from-text-directive.html [ Pass Timeout ]\n\n# Sheriff 2022-04-28\ncrbug.com/1289759 [ Linux ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\ncrbug.com/1289759 [ Win ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]\n\ncrbug.com/1137003 fast/dom/timer-throttling-background-page-near-alignment-interval.html [ Failure Pass ]\n\n# Sheriff 2022-04-29\ncrbug.com/1321243 accessibility/aom-reparenting-crash.html [ Pass Timeout ]\n\n# Sheriff 2022-05-02\ncrbug.com/1321293 fast/forms/calendar-picker/week-picker-choose-default-value-after-set-value.html [ Failure Pass ]\n\n# Test expectations for Win11\ncrbug.com/1295890 [ Win11 ] fast/dom/HTMLScriptElement/script-sync-load-failure.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/eventsource/workers/eventsource-cors-no-server.html [ Skip Timeout ]\ncrbug.com/1295890 [ Win11 ] http/tests/security/document-domain-canonicalizes-iframe.html [ Skip Timeout ]\n\ncrbug.com/1322405 external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\ncrbug.com/1322405 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-05-06\ncrbug.com/1322072 external/wpt/fetch/content-type/script.window.html [ Failure Pass ]\ncrbug.com/1286883 [ Mac ] fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-05-11\ncrbug.com/1324428 fast/webgl/canvas-toDataURL-crash.html [ Crash Pass ]\n\n# Throttling a hidden-cross origin frame may stall animations.\ncrbug.com/1323246 external/wpt/web-animations/timing-model/timelines/sibling-iframe-timeline.html [ Failure Pass ]\n\n# Sheriff 2022-05-16\ncrbug.com/1325858 virtual/wasm-code-caching/http/tests/wasm/caching/code-cache.html [ Skip ]\n\n# introduce blink_wpt_tests\ncrbug.com/1299834 [ Win ] wpt_internal/html/interaction/focus/the-autofocus-attribute/object-fallback.html [ Timeout ]\ncrbug.com/1299834 external/wpt/css/css-pseudo/first-letter-with-quote.html [ Failure ]\n\n# Remove from virtual tests when ReduceAcceptLanguage is turned on by default.\ncrbug.com/1307484 http/tests/serviceworker/reduce-accept-language/fetch-event-headers.html [ Skip ]\ncrbug.com/1307484 navigator_language/reduce_accept_language/* [ Skip ]\n\n# Sheriff 2022-05-20\ncrbug.com/1291841 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment-security.sub.html [ Pass Timeout ]\ncrbug.com/1327764 inspector-protocol/overlay/overlay-persistent-overlays.js [ Failure Pass ]\n\n# Sheriff 2022-05-26\ncrbug.com/1329596 virtual/gpu-rasterization/images/jpeg-with-non-interleaved-dc-channels.html [ Failure Pass ]\n\n# Sheriff 2022-05-30\ncrbug.com/1330238 [ Mac ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]\n\n# Sheriff 2022-05-31\ncrbug.com/1330555 external/wpt/service-workers/service-worker/resource-timing-fetch-variants.https.html [ Failure Pass ]\n\n# fast/canvas/OffscreenCanvas-2d-drawImage.html\ncrbug.com/1273409 [ Mac11 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Mac11-arm64 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Linux ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1273409 [ Win10.20h2 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\n\n# Flaky on multiple platforms\ncrbug.com/1277696 fast/loader/reload-zero-byte-plugin.html [ Failure Pass ]\n\n# Flaky on Windows\ncrbug.com/1316343 [ Win ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]\n\n# Manual test fails when run under automation due to lack of pop-up blocking. https://github.com/web-platform-tests/wpt/issues/3867\ncrbug.com/1337125 external/wpt/window-placement/fullscreen-companion-window-manual.tentative.https.html [ Failure ]\n\n# Temporarily disable test to merge 'reveal' button change to adorner\ncrbug.com/1066772 http/tests/devtools/elements/shadow/shadow-slot-assignment.js [ Skip ]\n\n# Flaky on multiple platforms\ncrbug.com/1338536 http/tests/devtools/oopif/oopif-elements-nesting.js [ Failure Pass ]\n\n# Tests that compare a float color to an integer color can suffer off-by-one errors\n# There is no mechanism for fuzzing reference tests outside of WPT and tests that require internals cannot be in WPT\n# When the scrollbarOverlay is moved to float color these can be re-enabled\ncrbug.com/1308932 compositing/overflow/reparented-overlay-scrollbars-should-respect-ancestor-clip.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/reparented-unclipped-overlay-scrollbars-with-offset-from-renderer.html [ Failure ]\ncrbug.com/1308932 compositing/squashing/squashing-inside-perspective-with-reparented-scrolling.html [ Failure ]\ncrbug.com/1308932 fast/scrolling/overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbar-over-child-layer-nested-4.html [ Failure ]\ncrbug.com/1308932 compositing/overflow/non-reparented-overlay-scrollbars.html [ Failure ]\ncrbug.com/1308932 scrollbars/auto-scrollbar-fades-out.html [ Failure ]\ncrbug.com/1308932 scrollbars/overlay-scrollbars-within-overflow-scroll.html [ Failure ]\n\n# Sheriff 2022-06-24\ncrbug.com/1339211 [ Mac ] external/wpt/css/css-text-decor/text-decoration-thickness-fixed.html [ Failure Pass ]\ncrbug.com/1339214 [ Mac ] external/wpt/webaudio/the-audio-api/the-convolvernode-interface/realtime-conv.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/the-img-element/invisible-image.html [ Failure Pass ]\ncrbug.com/1339293 [ Linux ] virtual/threaded/external/wpt/requestidlecallback/deadline-max-rAF-dynamic.html [ Failure Pass ]\ncrbug.com/webrtc/14228 external/wpt/webrtc/protocol/h264-profile-levels.https.html [ Failure Pass ]\n\n[ Debug ] external/wpt/scroll-animations/scroll-timelines/set-current-time-before-play.html [ Skip ]\n\nexternal/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-networkState.html [ Skip ]\n\n# Sheriff 2022-06-29\ncrbug.com/1340421 [ Mac10.15 ] virtual/gpu-rasterization/images/color-profile-svg-foreign-object.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/image-object-in-canvas.html [ Skip ]\ncrbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/quadraticCurveTo.xml [ Skip ]\n\ncrbug.com/1340716 [ Linux ] accessibility/notification-listeners.html [ Skip ]\n\n# Sheriff 2022-06-30\ncrbug.com/1340781 fullscreen/full-screen-table-section.html [ Skip ]\n\n# Sheriff 2022-07-05\ncrbug.com/1340763 external/wpt/pointerevents/pointerevent_capture_mouse.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/with-ports/021.html [ Failure Pass ]\ncrbug.com/1341090 external/wpt/webmessaging/without-ports/021.html [ Failure Pass ]\n\n# Sheriff 2022-07-07\ncrbug.com/1339538 [ Mac ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Linux ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1339538 [ Win10.20h2 ] fast/frames/002.html [ Failure Pass ]\ncrbug.com/1097040 media/controls/overflow-menu-always-visible.html [ Failure Pass ]\ncrbug.com/1342526 external/wpt/dom/events/non-cancelable-when-passive/non-passive-wheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-08\ncrbug.com/1180274 virtual/plz-dedicated-worker/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\ncrbug.com/1180274 virtual/partitioned-cookies/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]\n\n# Sheriff 2022-07-12\ncrbug.com/1343674 [ Linux ] editing/deleting/460938.html [ Failure Pass ]\ncrbug.com/1343664 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-document.html [ Failure Pass ]\n\n# Disable test to land a MSE change. Spec change (MSE PR#306) is still pending,\n# and once landed, this line can be removed.\ncrbug.com/878133 external/wpt/media-source/idlharness.window.html [ Failure Pass ]\n\n# Tests that are exercising the tentative feature COOP: restrict-properties.\n# These are tests which are implemented before the feature is complete and\n# flakily crash.\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?1-2 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?3-4 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?5-6 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?7-8 [ Crash Failure ]\ncrbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?9-last [ Crash Failure ]\n\n# Sheriff 2022-07-13\ncrbug.com/1204176 [ Linux ] fast/scrolling/overflow-scrollability.html [ Failure Pass ]\ncrbug.com/1344175 [ Mac12 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-root.html [ Failure Pass ]\n\n# Sheriff 2022-07-15\ncrbug.com/1344652 [ Mac ] external/wpt/webmessaging/with-ports/020.html [ Failure Pass ]\ncrbug.com/1344771 virtual/force-defer-script/external/wpt/html/semantics/scripting-1/the-script-element/defer-script/document-write.html [ Failure Pass ]\n\n# Sheriff 2022-07-18\ncrbug.com/1345192 accessibility/aria-combo-box-with-delay-add.html [ Skip ]\ncrbug.com/1345235 external/wpt/content-security-policy/style-src/stylehash-basic-blocked.sub.html [ Skip ]\ncrbug.com/1334674 [ Mac11 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]\n\n# Sheriff 2022-07-21\ncrbug.com/1346158 crbug.com/1346158 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-window.html [ Failure Pass ]\n\n# Sheriff 2022-07-25\ncrbug.com/1343935 [ Mac10.15 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-body.html [ Failure Pass ]\n\n# Sheriff 2022-07-26\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-links.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-not-propagated-by-out-of-flow.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html [ Skip ]\ncrbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style.html [ Skip ]\n\n# Sheriff 2022-07-28\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1348118 [ Linux ] virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# Failure on all platforms was added before, see crbug.com/1306770\ncrbug.com/1348118 http/tests/inspector-protocol/network/interception-download.js [ Failure Pass Timeout ]\ncrbug.com/1348118 [ Linux ] virtual/first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]\n# See crbug.com/1344277 for Crash and Failure\ncrbug.com/1348118 [ Linux ] wpt_internal/webxr/ar/ar_light_estimation.https.html [ Crash Failure Pass Timeout ]\n\n# Sheriff 2022-07-29 - Flaky failure.\ncrbug.com/1347675 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/fragment-navigation.https.html [ Pass Timeout ]\n\n# Offscreen GPU canvas test flaky\ncrbug.com/1286883 [ Linux ] virtual/gpu/fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]\n\n# Sheriff 2022-08-01\n# TODO(crbug.com/1225773): Re-enable this test\ncrbug.com/1225773 [ Linux ] external/wpt/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-event-during-parse.html [ Skip ]\n\n# Flaky timeouts on WebKit Linux MSAN\ncrbug.com/1218100 [ Linux ] external/wpt/IndexedDB/idb-partitioned-coverage.tentative.sub.html [ Pass Timeout ]\n\n# Sheriff 2022-08-03\ncrbug.com/1349910 [ Mac ] external/wpt/html/semantics/popups/popup-hover-hide.tentative.html [ Failure Pass ]\n\n# Sheriff 2022-08-06\ncrbug.com/1350336 [ Mac ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure Pass ]\ncrbug.com/1350337 [ Linux ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]\ncrbug.com/1350341 [ Linux ] virtual/threaded-no-composited-antialiasing/animations/direction-and-fill/fill-mode-missing-from-to-keyframes.html [ Failure Pass ]\n\n# These seem to consistently fail with disabling code cache.\ncrbug.com/1351903 http/tests/devtools/network/font-face.js [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-ad-fixed-position.html [ Failure Pass ]\ncrbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-image-ad-fixed-position.html [ Failure Pass ]\n\n# Sheriff 2022-08-11\n# Most likely a forced style/layout update from accessibiity while we are\n# render blocking, which should not happen.\ncrbug.com/1351811 external/wpt/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html [ Failure Pass ]\n\n# Flakes on all platforms.\ncrbug.com/1310202 [ Fuchsia ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Linux ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Mac ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\ncrbug.com/1310202 [ Win ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]\n\n# Sheriff 2022-08-12\ncrbug.com/1352248 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-non-ad-followed-by-ad.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/cross-origin-opener-policy/coop-sandbox-redirects-cuts-opener.https.html [ Failure Pass ]\ncrbug.com/1352545 [ Linux ] external/wpt/html/interaction/focus/chrome-object-tab-focus-bug.html [ Failure Pass ]\ncrbug.com/1352566 [ Mac ] external/wpt/html/browsers/browsing-the-web/history-traversal/event-order/before-load-hash-twice.html [ Failure Pass ]\ncrbug.com/1352607 external/wpt/css/css-transitions/transition-base-response-002.html [ Failure Pass ]\n\n# Sheriff 2022-08-17\ncrbug.com/1340167 fast/loader/iframe-navigation-stealing-focus.html [ Pass Timeout ]\n\n# Sheriff 2022-08-18\ncrbug.com/1354013 virtual/threaded-no-composited-antialiasing/animations/sample-on-last-keyframe.html [ Skip ]\n\n# Sheriff 2022-08-19\ncrbug.com/1354433 [ Mac ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\ncrbug.com/1354433 [ Linux ] external/wpt/html/browsers/the-window-object/window-properties.https.html [ Failure Pass ]\n\n# Failures with FractionalScrollOffsets disabled for web tests by default.\ncrbug.com/1358383 fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Failure ]\ncrbug.com/1358383 [ Mac ] fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure ]\ncrbug.com/1358383 fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure ]\ncrbug.com/1358383 virtual/compositor_threaded_scrollbar_scrolling/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\ncrbug.com/1358383 virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-root-scrollbar-thumb.html [ Failure ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/touch-scrolling-on-root-scrollbar.html [ Pass ]\n[ Mac ] virtual/percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\n[ Mac ] virtual/fractional-scroll-offsets/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Pass ]\nvirtual/percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/main-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\nvirtual/fractional-scroll-offsets/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Pass ]\n\n# Sheriff 2022-08-24\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/async-script-scheduling-finished-parsing/wpt_internal/async-script-scheduling/execution-order.sub.html [ Failure Pass ]\n\n# Sheriff 2022-08-26\ncrbug.com/1356118 [ Mac ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Mac ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\ncrbug.com/1356118 [ Linux ] virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/local-storage-initial-empty-document.tentative.https.window.html [ Failure Pass ]\n\n# Sheriff 2022-08-30\ncrbug.com/1357621 [ Linux ] external/wpt/webauthn/getcredential-abort.https.html [ Failure Pass Timeout ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default.html [ Failure Pass ]\ncrbug.com/1357917 virtual/threaded/external/wpt/scroll-animations/css/scroll-timeline-default-writing-mode-rl.html [ Failure Pass ]\n\ncrbug.com/1358051 external/wpt/longtask-timing/containerTypes.html [ Failure Pass ]\n\n# TODO(crbug.com/1358147): Re-enable this test\nvirtual/plz-dedicated-worker/external/wpt/resource-timing/no-entries-for-cross-origin-css-fetched-memory-cache.sub.html [ Skip ]\n\n# Disable step failure trigger flaky tests\ncrbug.com/1351571 [ Mac12-arm64 ] http/tests/devtools/persistence/automapping-bind-committed-network-sourcecode.js [ Failure Pass Timeout ]\ncrbug.com/1358333 [ Mac10.15 ] external/wpt/webmessaging/event.origin.sub.htm [ Failure Pass ]\n\n# Sheriff 2022-08-31\ncrbug.com/1306304 [ Mac ] plugins/multiple-plugins.html [ Failure Pass ]\n\n# Sheriff 2022-09-01\nvirtual/gpu/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Skip ]\n\n# Sheriff 2022-09-06\ncrbug.com/1358298 external/wpt/html/cross-origin-embedder-policy/require-corp.https.html [ Failure Pass ]\n\n# Disable more gpu test on linux dbg\ncrbug.com/1356664 [ Debug Linux ] virtual/no-alloc-direct-call/fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure Pass ]\n\n# Disable scrolling flake on win\ncrbug.com/1359541 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/mouse-scrolling-on-div-custom-scrollbar.html [ Failure Pass Timeout ]\n\n# Disable devtool flake on Mac11,12,10.15\ncrbug.com/1363259 [ Mac11 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac12 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\ncrbug.com/1363259 [ Mac10.15 ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]\n\n# Disable media security policy test on Linux (dbg, ASAN) and Mac12 (dbg)\ncrbug.com/1349180 [ Linux ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\ncrbug.com/1349180 [ Debug Mac12 ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass Timeout ]\n\n# Disable flakes on mac builders\ncrbug.com/1363708 [ Mac12 ] http/tests/media/gc-while-network-loading.html [ Pass Timeout ]\ncrbug.com/1363683 [ Mac12 ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac10.15 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\ncrbug.com/1364129 [ Mac11 ] editing/pasteboard/data-transfer-items-image-png.html [ Failure Pass ]\n\n# Disable DOM web flake on debug linux and mac\ncrbug.com/1353578 [ Debug Linux ] fast/dom/gc-image-element-2.html [ Failure Pass ]\ncrbug.com/1353578 [ Debug Mac ] fast/dom/gc-image-element-2.html [ Failure Pass ]\n\n# Sheriff 2022-09-07\ncrbug.com/1360691 [ Debug Linux ] fast/canvas/disconnected-canvas-lost-gpu-context.html [ Failure ]\n\n# Sheriff 2022-09-09\ncrbug.com/1361956 [ Linux ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Pass Timeout ]\n\nvirtual/scalefactor200/css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Skip ]"
   }
-}
\ No newline at end of file
+}
diff --git a/tools/metrics/histograms/enums.xml b/tools/metrics/histograms/enums.xml
index 0678c1a..07d7490 100644
--- a/tools/metrics/histograms/enums.xml
+++ b/tools/metrics/histograms/enums.xml
@@ -25050,7 +25050,7 @@
   <int value="5" label="kImageICO"/>
   <int value="6" label="kImageBMP"/>
   <int value="7" label="kImageAVIF"/>
-  <int value="8" label="kImageJXL"/>
+  <int value="8" label="(obsolete) kImageJXL"/>
 </enum>
 
 <enum name="DecodeSwapChainNotUsedReason">
@@ -59066,7 +59066,6 @@
   <int value="-892428689" label="ManualPasswordGenerationAndroid:enabled"/>
   <int value="-892297699" label="EditContext:enabled"/>
   <int value="-891856063" label="MidiManagerAndroid:enabled"/>
-  <int value="-890517779" label="JXL:enabled"/>
   <int value="-890224928" label="DownloadBubbleV2:enabled"/>
   <int value="-889670978" label="AssistantRoutines:disabled"/>
   <int value="-887101831" label="StoreHoursAndroid:disabled"/>
@@ -60884,7 +60883,6 @@
   <int value="188610022" label="NewMessageListView:enabled"/>
   <int value="189728101" label="FasterLocationReload:disabled"/>
   <int value="189777537" label="DisableInitialMostVisitedFadeIn:enabled"/>
-  <int value="190282969" label="JXL:disabled"/>
   <int value="190395448" label="SearchWebInSidePanel:enabled"/>
   <int value="191737931" label="enable-mark-http-as"/>
   <int value="191891628" label="AutocompleteExtendedSuggestions:enabled"/>