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

Side by Side Diff: LayoutTests/compositing/overflow/do-not-assert-on-invisible-composited-layers.html

Issue 27104002: Fix ASSERT failure in RenderGeometryMap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: +test Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/compositing/overflow/do-not-assert-on-invisible-composited-layers-expected.txt » ('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 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7
8 if (window.internals)
9 window.internals.settings.setAcceleratedCompositingForOverflowScrollEn abled(true);
10
11 function runTests() {
12 var scrollParent = document.getElementById('scrollParent');
13
14 // Scroll the parent.
15 scrollParent.scrollTop = 250;
16
17 // Force a re-computeCompositingRequirements.
18 scrollParent.style.webkitTransform = '';
19 }
20
21 window.addEventListener('load', runTests, false);
22 </script>
23 </head>
24 <body>
25 <div id='scrollParent' style='-webkit-transform: translateZ(0); overflow:scr oll; height: 250px; width: 250px;'>
26 <div style='overflow:scroll; height: 500px; width: 500px; visibility: hi dden'>
27 </div>
28 </div>
29 <pre id="result">PASS - didn't crash.</pre>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/compositing/overflow/do-not-assert-on-invisible-composited-layers-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698