Title: [284655] trunk/Source/WebCore
Revision
284655
Author
[email protected]
Date
2021-10-21 17:08:14 -0700 (Thu, 21 Oct 2021)

Log Message

REGRESSION (r275641): [ iPad Debug ] accessibility/ios-simulator/scroll-in-overflow-div.html is asserting
https://bugs.webkit.org/show_bug.cgi?id=228622

Reviewed by Alan Bujtas.

The test was hitting ASSERT(!m_visibleContentStatusDirty). It seems harmless to clear
repaint rects when m_visibleContentStatusDirty is true.

* rendering/RenderLayer.cpp:
(WebCore::RenderLayer::clearRepaintRects):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (284654 => 284655)


--- trunk/Source/WebCore/ChangeLog	2021-10-21 23:58:35 UTC (rev 284654)
+++ trunk/Source/WebCore/ChangeLog	2021-10-22 00:08:14 UTC (rev 284655)
@@ -1,5 +1,18 @@
 2021-10-21  Simon Fraser  <[email protected]>
 
+        REGRESSION (r275641): [ iPad Debug ] accessibility/ios-simulator/scroll-in-overflow-div.html is asserting
+        https://bugs.webkit.org/show_bug.cgi?id=228622
+
+        Reviewed by Alan Bujtas.
+
+        The test was hitting ASSERT(!m_visibleContentStatusDirty). It seems harmless to clear
+        repaint rects when m_visibleContentStatusDirty is true.
+
+        * rendering/RenderLayer.cpp:
+        (WebCore::RenderLayer::clearRepaintRects):
+
+2021-10-21  Simon Fraser  <[email protected]>
+
         Content offset in this codepen when switching tabs
         https://bugs.webkit.org/show_bug.cgi?id=231989
 

Modified: trunk/Source/WebCore/rendering/RenderLayer.cpp (284654 => 284655)


--- trunk/Source/WebCore/rendering/RenderLayer.cpp	2021-10-21 23:58:35 UTC (rev 284654)
+++ trunk/Source/WebCore/rendering/RenderLayer.cpp	2021-10-22 00:08:14 UTC (rev 284655)
@@ -1139,7 +1139,6 @@
 
 void RenderLayer::clearRepaintRects()
 {
-    ASSERT(!m_visibleContentStatusDirty);
     m_repaintRectsValid = false;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to