Commit d3dfd018 authored by Philip Rogers's avatar Philip Rogers Committed by Commit Bot

[root layer scrolls] Rebaseline 3 passing tests

These tests were all passing according to:
http://wince.sfo.corp.google.com:8766/rls

This test was recently rebaselined in
https://chromium-review.googlesource.com/c/chromium/src/+/742238
but was missing a windows expectation:
invalidation-rect-includes-newline-for-vertical-lr.html

These tests match the non-RLS expectations except they have additional
Scrolling Layer and Scrolling Contents Layers:
paint/invalidation/selection-clear-after-move.html
paint/invalidation/compositing/should-not-repaint-move-backface-hidden.html

Bug: 781419

Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_root_layer_scrolls
Change-Id: Ic70afc049f2095b92b5cf8179736dc552d06534b
Reviewed-on: https://chromium-review.googlesource.com/765015
Commit-Queue: Philip Rogers <pdr@chromium.org>
Reviewed-by: default avatarStefan Zager <szager@chromium.org>
Reviewed-by: default avatarSteve Kobes <skobes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#516352}
parent 58417b21
...@@ -157,8 +157,6 @@ crbug.com/417782 virtual/threaded/printing/subframes-percentage-height.html [ Fa ...@@ -157,8 +157,6 @@ crbug.com/417782 virtual/threaded/printing/subframes-percentage-height.html [ Fa
crbug.com/417782 virtual/threaded/printing/thead-repeats-at-top-of-each-page.html [ Failure ] crbug.com/417782 virtual/threaded/printing/thead-repeats-at-top-of-each-page.html [ Failure ]
crbug.com/417782 compositing/iframes/iframe-composited-scrolling.html [ Failure ] crbug.com/417782 compositing/iframes/iframe-composited-scrolling.html [ Failure ]
crbug.com/417782 compositing/squashing/dont-squash-into-videos.html [ Failure ] crbug.com/417782 compositing/squashing/dont-squash-into-videos.html [ Failure ]
crbug.com/417782 paint/invalidation/selection/selection-clear-after-move.html [ Failure ]
crbug.com/417782 paint/invalidation/compositing/should-not-repaint-move-backface-hidden.html [ Failure ]
crbug.com/417782 virtual/mouseevent_fractional/fast/events/autoscroll.html [ Failure ] crbug.com/417782 virtual/mouseevent_fractional/fast/events/autoscroll.html [ Failure ]
crbug.com/417782 virtual/mouseevent_fractional/fast/events/drag-and-drop-autoscroll-frameset.html [ Timeout Failure ] crbug.com/417782 virtual/mouseevent_fractional/fast/events/drag-and-drop-autoscroll-frameset.html [ Timeout Failure ]
crbug.com/417782 virtual/mouseevent_fractional/fast/events/drag-and-drop-autoscroll-inner-frame.html [ Timeout Failure ] crbug.com/417782 virtual/mouseevent_fractional/fast/events/drag-and-drop-autoscroll-inner-frame.html [ Timeout Failure ]
......
{
"layers": [
{
"name": "LayoutView #document",
"bounds": [800, 600],
"backgroundColor": "#FFFFFF"
},
{
"name": "Scrolling Layer",
"bounds": [800, 600],
"drawsContent": false
},
{
"name": "Scrolling Contents Layer",
"bounds": [800, 600],
"contentsOpaque": true,
"backgroundColor": "#FFFFFF"
},
{
"name": "LayoutBlockFlow (positioned) DIV id='target'",
"position": [100, 200],
"bounds": [100, 100],
"contentsOpaque": true,
"backfaceVisibility": "hidden",
"backgroundColor": "#008000"
}
]
}
{
"layers": [
{
"name": "LayoutView #document",
"bounds": [800, 600],
"backgroundColor": "#FFFFFF"
},
{
"name": "Scrolling Layer",
"bounds": [800, 600],
"drawsContent": false
},
{
"name": "Scrolling Contents Layer",
"bounds": [800, 600],
"contentsOpaque": true,
"backgroundColor": "#FFFFFF",
"paintInvalidations": [
{
"object": "LayoutImage IMG",
"rect": [100, 300, 50, 50],
"reason": "selection"
}
]
}
],
"objectPaintInvalidations": [
{
"object": "LayoutImage IMG",
"reason": "selection"
},
{
"object": "LayoutText #text",
"reason": "selection"
}
]
}
{
"layers": [
{
"name": "LayoutView #document",
"bounds": [800, 600],
"backgroundColor": "#FFFFFF"
},
{
"name": "Scrolling Layer",
"bounds": [800, 600],
"drawsContent": false
},
{
"name": "Scrolling Contents Layer",
"bounds": [800, 600],
"contentsOpaque": true,
"backgroundColor": "#FFFFFF",
"paintInvalidations": [
{
"object": "LayoutText #text",
"rect": [7, 8, 34, 48],
"reason": "geometry"
}
]
}
],
"objectPaintInvalidations": [
{
"object": "LayoutText #text",
"reason": "geometry"
},
{
"object": "InlineTextBox 'xx'",
"reason": "geometry"
},
{
"object": "InlineTextBox 'y'",
"reason": "geometry"
}
]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment