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.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245220
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2019-05-12 Simon Fraser <simon.fraser@apple.com>
+
+ 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 <Takashi.Komori@sony.com>
[Curl] Suppress extra didReceiveAuthenticationChallenge call when accessing a server which checks basic auth.
--- /dev/null
+<!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>
+
--- /dev/null
+<!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>
+
+2019-05-12 Simon Fraser <simon.fraser@apple.com>
+
+ 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 <simon.fraser@apple.com>
Add logging for RenderLayer clip rects
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)