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

Side by Side Diff: LayoutTests/compositing/content-changed-chicken-egg.html

Issue 131543013: Update scroll parent correctly for squashing layers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/compositing/content-changed-chicken-egg-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 #container {
6 width: 100px;
7 height: 100px;
8 border: 3px solid black;
9 overflow: scroll;
10 }
11
12 canvas {
13 background-color: gray;
14 border: 1px solid black;
15 -webkit-transform: translateZ(0);
16 }
17 </style>
18 <script>
19 if (window.testRunner)
20 testRunner.dumpAsTextWithPixelResults();
21
22 if (window.internals) {
23 window.internals.settings.setAcceleratedCompositingForOverflowScrollEn abled(true);
24 window.internals.settings.setCompositorDrivenAcceleratedScrollingEnabl ed(true);
25 window.internals.settings.setAccelerated2dCanvasEnabled(true);
26 }
27
28 function doTest() {
29 var canvas = document.getElementById("canvas");
30 var context = canvas.getContext('2d');
31 context.fillStyle = 'green';
32 context.fillRect(0, 0, 150, 100);
33 canvas.height = "200px";
34 }
35
36 window.onload = doTest;
37 </script>
38 </head>
39 <body>
40 <div id="container">
41 <canvas id="canvas" width="50" height="50"></canvas>
42 </div>
43 </body>
44 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/compositing/content-changed-chicken-egg-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698