Title: [245220] trunk
Revision
245220
Author
[email protected]
Date
2019-05-12 20:57:38 -0700 (Sun, 12 May 2019)

Log Message

When the set of backing-sharing layers changes, we need to issue a repaint
https://bugs.webkit.org/show_bug.cgi?id=197825

Reviewed by Zalan Bujtas.

Source/WebCore:

If the set of layers painting into a shared backing store changes, we need
to repaint that backing store. This happens when scrolling as shared layers
enter the visible area.

Test: compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html

* rendering/RenderLayerBacking.cpp:
(WebCore::RenderLayerBacking::setBackingSharingLayers):

LayoutTests:

* compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll-expected.html: Added.
* compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (245219 => 245220)


--- trunk/LayoutTests/ChangeLog	2019-05-13 03:07:52 UTC (rev 245219)
+++ trunk/LayoutTests/ChangeLog	2019-05-13 03:57:38 UTC (rev 245220)
@@ -1,3 +1,13 @@
+2019-05-12  Simon Fraser  <[email protected]>
+
+        When the set of backing-sharing layers changes, we need to issue a repaint
+        https://bugs.webkit.org/show_bug.cgi?id=197825
+
+        Reviewed by Zalan Bujtas.
+
+        * compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll-expected.html: Added.
+        * compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html: Added.
+
 2019-05-12  Takashi Komori  <[email protected]>
 
         [Curl] Suppress extra didReceiveAuthenticationChallenge call when accessing a server which checks basic auth.

Added: trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll-expected.html (0 => 245220)


--- trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll-expected.html	                        (rev 0)
+++ trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll-expected.html	2019-05-13 03:57:38 UTC (rev 245220)
@@ -0,0 +1,40 @@
+<!DOCTYPE html> <!-- webkit-test-runner [ internal:AsyncOverflowScrollingEnabled=true ] -->
+<html>
+<head>
+    <style>
+        .scrollable {
+            overflow-y: scroll;
+            height: 300px;
+            width: 300px;
+            margin: 10px;
+            border: 1px solid black;
+        }
+		
+		.box.sharing {
+            background-color: blue;
+		}
+		
+		.box {
+			position: relative;
+			top: 50px;
+			left: 50px;
+            width: 180px;
+            height: 180px;
+            background-color: green;
+		}
+
+        .spacer {
+            height: 500px;
+        }
+    </style>
+</head>
+<body>
+    <div class="scrollable">
+        <div class="sharing box">
+			<div class="inner box"></div>
+        </div>
+        <div class="spacer"></div>
+    </div>
+</body>
+</html>
+

Added: trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html (0 => 245220)


--- trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html	                        (rev 0)
+++ trunk/LayoutTests/compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html	2019-05-13 03:57:38 UTC (rev 245220)
@@ -0,0 +1,57 @@
+<!DOCTYPE html> <!-- webkit-test-runner [ internal:AsyncOverflowScrollingEnabled=true ] -->
+<html>
+<head>
+    <title>Tests repaints of shared backing when the sharing layers change</title>
+    <style>
+        .scrollable {
+            overflow-y: scroll;
+            height: 300px;
+            width: 300px;
+            margin: 10px;
+            border: 1px solid black;
+        }
+		
+		.box.sharing {
+            background-color: blue;
+		}
+		
+		.box {
+			position: relative;
+			top: 50px;
+			left: 50px;
+            width: 180px;
+            height: 180px;
+            background-color: green;
+		}
+
+        .spacer {
+            height: 500px;
+        }
+    </style>
+    <script>
+        if (window.testRunner)
+            testRunner.waitUntilDone();
+
+        window.addEventListener('load', () => {
+            let scroller = document.querySelector('.scrollable');
+            requestAnimationFrame(() => {
+                scroller.scrollTop = 250;
+                requestAnimationFrame(() => {
+                    scroller.scrollTop = 0;
+                    if (window.testRunner)
+                        testRunner.notifyDone();
+                });
+            });
+        }, false);
+    </script>
+</head>
+<body>
+    <div class="scrollable">
+        <div class="sharing box">
+			<div class="inner box"></div>
+        </div>
+        <div class="spacer"></div>
+    </div>
+</body>
+</html>
+

Modified: trunk/Source/WebCore/ChangeLog (245219 => 245220)


--- trunk/Source/WebCore/ChangeLog	2019-05-13 03:07:52 UTC (rev 245219)
+++ trunk/Source/WebCore/ChangeLog	2019-05-13 03:57:38 UTC (rev 245220)
@@ -1,3 +1,19 @@
+2019-05-12  Simon Fraser  <[email protected]>
+
+        When the set of backing-sharing layers changes, we need to issue a repaint
+        https://bugs.webkit.org/show_bug.cgi?id=197825
+
+        Reviewed by Zalan Bujtas.
+
+        If the set of layers painting into a shared backing store changes, we need
+        to repaint that backing store. This happens when scrolling as shared layers
+        enter the visible area.
+
+        Test: compositing/shared-backing/overflow-scroll/repaint-shared-on-scroll.html
+
+        * rendering/RenderLayerBacking.cpp:
+        (WebCore::RenderLayerBacking::setBackingSharingLayers):
+
 2019-05-02  Simon Fraser  <[email protected]>
 
         Add logging for RenderLayer clip rects

Modified: trunk/Source/WebCore/rendering/RenderLayerBacking.cpp (245219 => 245220)


--- trunk/Source/WebCore/rendering/RenderLayerBacking.cpp	2019-05-13 03:07:52 UTC (rev 245219)
+++ trunk/Source/WebCore/rendering/RenderLayerBacking.cpp	2019-05-13 03:57:38 UTC (rev 245220)
@@ -281,6 +281,10 @@
 void RenderLayerBacking::setBackingSharingLayers(Vector<WeakPtr<RenderLayer>>&& sharingLayers)
 {
     clearBackingSharingLayerProviders(m_backingSharingLayers);
+
+    if (sharingLayers != m_backingSharingLayers)
+        setContentsNeedDisplay(); // This could be optimize to only repaint rects for changed layers.
+
     m_backingSharingLayers = WTFMove(sharingLayers);
 
     for (auto& layerWeakPtr : m_backingSharingLayers)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to