summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/platform/android
diff options
context:
space:
mode:
authorwangxianzhu@chromium.org <wangxianzhu@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-08-02 03:23:02 +0000
committerwangxianzhu@chromium.org <wangxianzhu@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-08-02 03:23:02 +0000
commitee753eab60c595d863c1d28068397b6e3d0ea366 (patch)
tree06f3783a525731f23e485122571475221a39184c /third_party/WebKit/LayoutTests/platform/android
parent24b2cd1af2ee79b119382b1ec55fbaca518275ba (diff)
downloadchromium_src-ee753eab60c595d863c1d28068397b6e3d0ea366.zip
chromium_src-ee753eab60c595d863c1d28068397b6e3d0ea366.tar.gz
chromium_src-ee753eab60c595d863c1d28068397b6e3d0ea366.tar.bz2
Clear scrollbar damages in time
When scrollbar is invalidated during layout, the damaged area is cached so that the next invalidateTreeIfNeeded will pick up them and do real invalidation. However, when we do full view repaint we skip invalidation of scrollbar damages, but leave the damage status not cleared. Override RenderObject::clearPaintInvalidationState() and RenderObject::paintInvalidationStateIsDirty() to handle clearing of scrollbar damage status. BUG=394833 TEST=fast/repaint/vertical-overflow-parent.html TEST=fast/repaint/scrollbar-damage-and-full-viewport-repaint.html R=jchaffraix@chromium.org Review URL: https://codereview.chromium.org/403593005 git-svn-id: svn://svn.chromium.org/blink/trunk@179433 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/platform/android')
-rw-r--r--third_party/WebKit/LayoutTests/platform/android/compositing/squashing/invalidations-with-large-negative-margin-expected.txt17
-rw-r--r--third_party/WebKit/LayoutTests/platform/android/fast/repaint/overflow-scroll-delete-expected.txt36
-rw-r--r--third_party/WebKit/LayoutTests/platform/android/virtual/softwarecompositing/squashing/invalidations-with-large-negative-margin-expected.txt17
3 files changed, 0 insertions, 70 deletions
diff --git a/third_party/WebKit/LayoutTests/platform/android/compositing/squashing/invalidations-with-large-negative-margin-expected.txt b/third_party/WebKit/LayoutTests/platform/android/compositing/squashing/invalidations-with-large-negative-margin-expected.txt
deleted file mode 100644
index 0766bad..0000000
--- a/third_party/WebKit/LayoutTests/platform/android/compositing/squashing/invalidations-with-large-negative-margin-expected.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-(GraphicsLayer
- (bounds 800.00 600.00)
- (children 1
- (GraphicsLayer
- (bounds 800.00 600.00)
- (contentsOpaque 1)
- (drawsContent 1)
- (repaint rects
- (rect 593.00 8.00 15.00 15.00)
- (rect 408.00 8.00 50.00 50.00)
- (rect 8.00 193.00 15.00 15.00)
- (rect 8.00 8.00 50.00 50.00)
- )
- )
- )
-)
-
diff --git a/third_party/WebKit/LayoutTests/platform/android/fast/repaint/overflow-scroll-delete-expected.txt b/third_party/WebKit/LayoutTests/platform/android/fast/repaint/overflow-scroll-delete-expected.txt
deleted file mode 100644
index 3dc6939..0000000
--- a/third_party/WebKit/LayoutTests/platform/android/fast/repaint/overflow-scroll-delete-expected.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x60
- RenderText {#text} at (0,0) size 144x19
- text run at (0,0) width 144: "This is a repaint test for "
- RenderInline {I} at (0,0) size 754x39
- RenderInline {A} at (0,0) size 305x19 [color=#0000EE]
- RenderText {#text} at (144,0) size 305x19
- text run at (144,0) width 305: "http://bugs.webkit.org/show_bug.cgi?id=11277"
- RenderText {#text} at (449,0) size 754x39
- text run at (449,0) width 4: " "
- text run at (453,0) width 301: "REGRESSION: Incomplete repaint of overflow"
- text run at (0,20) width 128: "areas when deleting"
- RenderText {#text} at (128,20) size 733x39
- text run at (128,20) width 8: ". "
- text run at (136,20) width 422: "This shows that the repaint rect doesn't account for scrolling. You can "
- text run at (558,20) width 175: "use Quartz Debug to see that"
- text run at (0,40) width 388: "changing the text repaints a rect where the text would have been "
- text run at (388,40) width 146: "if it hadn't been scrolled."
-layer at (8,84) size 80x69 clip at (8,84) size 65x69 scrollY 128 scrollHeight 220
- RenderBlock {DIV} at (0,76) size 80x69
- RenderBR {BR} at (0,0) size 0x19
- RenderBR {BR} at (0,20) size 0x19
- RenderBR {BR} at (0,40) size 0x19
- RenderBR {BR} at (0,60) size 0x19
- RenderBR {BR} at (0,80) size 0x19
- RenderBR {BR} at (0,100) size 0x19
- RenderBR {BR} at (0,120) size 0x19
- RenderBR {BR} at (0,140) size 0x19
- RenderBR {BR} at (0,160) size 0x19
- RenderText {#text} at (0,180) size 43x39
- text run at (0,180) width 43: "Passed"
- text run at (0,200) width 26: "Test"
diff --git a/third_party/WebKit/LayoutTests/platform/android/virtual/softwarecompositing/squashing/invalidations-with-large-negative-margin-expected.txt b/third_party/WebKit/LayoutTests/platform/android/virtual/softwarecompositing/squashing/invalidations-with-large-negative-margin-expected.txt
deleted file mode 100644
index 0766bad..0000000
--- a/third_party/WebKit/LayoutTests/platform/android/virtual/softwarecompositing/squashing/invalidations-with-large-negative-margin-expected.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-(GraphicsLayer
- (bounds 800.00 600.00)
- (children 1
- (GraphicsLayer
- (bounds 800.00 600.00)
- (contentsOpaque 1)
- (drawsContent 1)
- (repaint rects
- (rect 593.00 8.00 15.00 15.00)
- (rect 408.00 8.00 50.00 50.00)
- (rect 8.00 193.00 15.00 15.00)
- (rect 8.00 8.00 50.00 50.00)
- )
- )
- )
-)
-