Title: [282163] trunk/LayoutTests
Revision
282163
Author
mmaxfi...@apple.com
Date
2021-09-08 12:47:28 -0700 (Wed, 08 Sep 2021)

Log Message

fast/text/FontFaceSet-status-after-style-update.html is flaky.
https://bugs.webkit.org/show_bug.cgi?id=229975

Unreviewed.

internals.clearMemoryCache() only works for fonts if you put it before the @font-face block.

* TestExpectations:
* fast/text/FontFaceSet-check-after-style-update.html:
* fast/text/FontFaceSet-status-after-style-update.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (282162 => 282163)


--- trunk/LayoutTests/ChangeLog	2021-09-08 19:05:05 UTC (rev 282162)
+++ trunk/LayoutTests/ChangeLog	2021-09-08 19:47:28 UTC (rev 282163)
@@ -1,3 +1,16 @@
+2021-09-08  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        fast/text/FontFaceSet-status-after-style-update.html is flaky.
+        https://bugs.webkit.org/show_bug.cgi?id=229975
+
+        Unreviewed.
+
+        internals.clearMemoryCache() only works for fonts if you put it before the @font-face block.
+
+        * TestExpectations:
+        * fast/text/FontFaceSet-check-after-style-update.html:
+        * fast/text/FontFaceSet-status-after-style-update.html:
+
 2021-09-08  Nikos Mouchtaris  <nmouchta...@apple.com>
 
         Implement sin, cos, tan, e and pi for calc

Modified: trunk/LayoutTests/TestExpectations (282162 => 282163)


--- trunk/LayoutTests/TestExpectations	2021-09-08 19:05:05 UTC (rev 282162)
+++ trunk/LayoutTests/TestExpectations	2021-09-08 19:47:28 UTC (rev 282163)
@@ -5063,5 +5063,4 @@
 webkit.org/b/229726 imported/w3c/web-platform-tests/css/css-font-loading/fontface-size-adjust-descriptor.html [ ImageOnlyFailure ]
 webkit.org/b/229727 imported/w3c/web-platform-tests/css/css-font-loading/fontfaceset-load-var.html [ Skip ]
 
-webkit.org/b/229975 fast/text/FontFaceSet-status-after-style-update.html [ Failure Pass ]
 webkit.org/b/230008 imported/w3c/web-platform-tests/css/css-pseudo/backdrop-animate-002.html [ ImageOnlyFailure ]

Modified: trunk/LayoutTests/fast/text/FontFaceSet-check-after-style-update.html (282162 => 282163)


--- trunk/LayoutTests/fast/text/FontFaceSet-check-after-style-update.html	2021-09-08 19:05:05 UTC (rev 282162)
+++ trunk/LayoutTests/fast/text/FontFaceSet-check-after-style-update.html	2021-09-08 19:47:28 UTC (rev 282163)
@@ -1,6 +1,12 @@
 <!DOCTYPE html>
 <html>
 <head id="head">
+<script>
+if (window.internals) {
+    internals.invalidateFontCache();
+    internals.clearMemoryCache();
+}
+</script>
 <style id="style">
 @font-face {
     font-family: "WebFont";
@@ -8,12 +14,6 @@
 }
 </style>
 <script src=""
-<script>
-if (window.internals) {
-    internals.invalidateFontCache();
-    internals.clearMemoryCache();
-}
-</script>
 </head>
 <body>
 <script>

Modified: trunk/LayoutTests/fast/text/FontFaceSet-status-after-style-update.html (282162 => 282163)


--- trunk/LayoutTests/fast/text/FontFaceSet-status-after-style-update.html	2021-09-08 19:05:05 UTC (rev 282162)
+++ trunk/LayoutTests/fast/text/FontFaceSet-status-after-style-update.html	2021-09-08 19:47:28 UTC (rev 282163)
@@ -1,6 +1,12 @@
 <!DOCTYPE html>
 <html>
 <head id="head">
+<script>
+if (window.internals) {
+    internals.invalidateFontCache();
+    internals.clearMemoryCache();
+}
+</script>
 <style id="style">
 @font-face {
     font-family: "WebFont";
@@ -8,12 +14,6 @@
 }
 </style>
 <script src=""
-<script>
-if (window.internals) {
-    internals.invalidateFontCache();
-    internals.clearMemoryCache();
-}
-</script>
 </head>
 <body>
 <script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to