Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/scroll-partial-update-expected.txt

Issue 2358203002: Enable compositing of scrolling content on low-DPI when LCD text will be maintained (Closed)
Patch Set: Fix indent and a bad rebaseline. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 scroll me 1 scroll me
2 { 2 {
3 "name": "Content Root Layer", 3 "name": "Content Root Layer",
4 "bounds": [800, 600], 4 "bounds": [800, 600],
5 "children": [ 5 "children": [
6 { 6 {
7 "name": "LayoutView #document", 7 "name": "LayoutView #document",
8 "bounds": [800, 600], 8 "bounds": [800, 600],
9 "contentsOpaque": true, 9 "contentsOpaque": true,
10 "drawsContent": true, 10 "drawsContent": true,
11 "children": [ 11 "children": [
12 { 12 {
13 "name": "Squashing Containment Layer", 13 "name": "Squashing Containment Layer",
14 "shouldFlattenTransform": false, 14 "shouldFlattenTransform": false,
15 "children": [ 15 "children": [
16 { 16 {
17 "name": "LayoutBlockFlow DIV id='composited'", 17 "name": "LayoutBlockFlow DIV id='composited'",
18 "position": [8, 8], 18 "position": [8, 8],
19 "bounds": [20, 20] 19 "bounds": [20, 20]
20 }, 20 },
21 { 21 {
22 "name": "Squashing Layer (first squashed layer: LayoutBlockFlow (p ositioned) DIV id='overlay')", 22 "name": "Squashing Layer (first squashed layer: LayoutBlockFlow (p ositioned) DIV id='overlay')",
23 "position": [10, 8], 23 "position": [10, 8],
24 "bounds": [400, 204], 24 "bounds": [400, 204],
25 "drawsContent": true 25 "drawsContent": true
26 } 26 }
27 ] 27 ]
28 },
29 {
30 "name": "LayoutBlockFlow DIV id='scroller'",
31 "position": [202, 10],
32 "bounds": [200, 200],
33 "shouldFlattenTransform": false,
34 "drawsContent": true,
35 "backgroundColor": "#FFFF00",
36 "children": [
37 {
38 "name": "Scrolling Layer",
39 "bounds": [185, 200],
40 "shouldFlattenTransform": false,
41 "children": [
42 {
43 "name": "Scrolling Contents Layer",
44 "bounds": [185, 400],
45 "contentsOpaque": true,
46 "drawsContent": true
47 }
48 ]
49 },
50 {
51 "name": "Overflow Controls Host Layer",
52 "bounds": [200, 200],
53 "children": [
54 {
55 "name": "Vertical Scrollbar Layer",
56 "position": [185, 0],
57 "bounds": [15, 200]
58 }
59 ]
60 }
61 ]
28 } 62 }
29 ] 63 ]
30 } 64 }
31 ] 65 ]
32 } 66 }
33 67
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698