Title: [263218] trunk
Revision
263218
Author
you...@apple.com
Date
2020-06-18 10:28:39 -0700 (Thu, 18 Jun 2020)

Log Message

REGRESSION (r263098): [Win10] http/tests/security/cross-origin-clean-css-resource-timing.html and http/tests/security/cross-origin-css-resource-timing.html are failing
https://bugs.webkit.org/show_bug.cgi?id=213303
<rdar://problem/64452203>

Reviewed by Alex Christensen.

Source/WebCore:

Covered by existing tests.

* loader/ResourceLoaderOptions.h:
Reverting part of https://trac.webkit.org/changeset/263098/webkit that might have broken win10 bots.

LayoutTests:

* platform/win/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (263217 => 263218)


--- trunk/LayoutTests/ChangeLog	2020-06-18 17:25:07 UTC (rev 263217)
+++ trunk/LayoutTests/ChangeLog	2020-06-18 17:28:39 UTC (rev 263218)
@@ -1,3 +1,13 @@
+2020-06-18  Youenn Fablet  <you...@apple.com>
+
+        REGRESSION (r263098): [Win10] http/tests/security/cross-origin-clean-css-resource-timing.html and http/tests/security/cross-origin-css-resource-timing.html are failing
+        https://bugs.webkit.org/show_bug.cgi?id=213303
+        <rdar://problem/64452203>
+
+        Reviewed by Alex Christensen.
+
+        * platform/win/TestExpectations:
+
 2020-06-18  Alexey Shvayka  <shvaikal...@gmail.com>
 
         TypedArray.prototype.set is incorrect with primitives

Modified: trunk/LayoutTests/platform/win/TestExpectations (263217 => 263218)


--- trunk/LayoutTests/platform/win/TestExpectations	2020-06-18 17:25:07 UTC (rev 263217)
+++ trunk/LayoutTests/platform/win/TestExpectations	2020-06-18 17:28:39 UTC (rev 263218)
@@ -4469,9 +4469,6 @@
 
 webkit.org/b/209601 animations/many-pseudo-animations.html [ Pass Failure ]
 
-webkit.org/b/213303 http/tests/security/cross-origin-clean-css-resource-timing.html [ Failure ]
-webkit.org/b/213303 http/tests/security/cross-origin-css-resource-timing.html [ Failure ]
-
 # IntersectionObserver is off by default
 http/tests/lazyload [ Skip ]
 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/below-viewport-image-loading-lazy-load-event.html [ Skip ]

Modified: trunk/Source/WebCore/ChangeLog (263217 => 263218)


--- trunk/Source/WebCore/ChangeLog	2020-06-18 17:25:07 UTC (rev 263217)
+++ trunk/Source/WebCore/ChangeLog	2020-06-18 17:28:39 UTC (rev 263218)
@@ -1,3 +1,16 @@
+2020-06-18  Youenn Fablet  <you...@apple.com>
+
+        REGRESSION (r263098): [Win10] http/tests/security/cross-origin-clean-css-resource-timing.html and http/tests/security/cross-origin-css-resource-timing.html are failing
+        https://bugs.webkit.org/show_bug.cgi?id=213303
+        <rdar://problem/64452203>
+
+        Reviewed by Alex Christensen.
+
+        Covered by existing tests.
+
+        * loader/ResourceLoaderOptions.h:
+        Reverting part of https://trac.webkit.org/changeset/263098/webkit that might have broken win10 bots.
+
 2020-06-18  Víctor Manuel Jáquez Leal  <vjaq...@igalia.com>
 
         [GStreamer] Avoid setting GstContext twice in GLVideoSinkGStreamer

Modified: trunk/Source/WebCore/loader/ResourceLoaderOptions.h (263217 => 263218)


--- trunk/Source/WebCore/loader/ResourceLoaderOptions.h	2020-06-18 17:25:07 UTC (rev 263217)
+++ trunk/Source/WebCore/loader/ResourceLoaderOptions.h	2020-06-18 17:28:39 UTC (rev 263218)
@@ -139,9 +139,9 @@
 };
 static constexpr unsigned bitWidthOfPreflightPolicy = 2;
 
-enum class LoadedFromOpaqueSource : bool {
-    No,
-    Yes
+enum class LoadedFromOpaqueSource : uint8_t {
+    Yes,
+    No
 };
 static constexpr unsigned bitWidthOfLoadedFromOpaqueSource = 1;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to