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

Side by Side Diff: LayoutTests/fast/dynamic/layer-no-longer-paginated.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
OLDNEW
1 <script src="../../resources/run-after-display.js"></script> 1 <script src="../../resources/run-after-display.js"></script>
2 <body style="overflow: hidden;"> 2 <body style="overflow: hidden;">
3 <p> 3 <p>
4 Test for <i><a href="rdar://problem/10098679">&lt;rdar://problem/1009867 9></a> 4 Test for <i><a href="rdar://problem/10098679">&lt;rdar://problem/1009867 9></a>
5 Assertion failure in <tt>RenderLayer::paintPaginatedChildLayer()</tt></i >. 5 Assertion failure in <tt>Layer::paintPaginatedChildLayer()</tt></i>.
6 </p> 6 </p>
7 <p> 7 <p>
8 The test passes if it does not cause an assertion failure or a crash. 8 The test passes if it does not cause an assertion failure or a crash.
9 </p> 9 </p>
10 <!-- specifying opacity < 1 so that the transition from having columns 10 <!-- specifying opacity < 1 so that the transition from having columns
11 to not having columns does not cause the layer to go away --> 11 to not having columns does not cause the layer to go away -->
12 <div id="target" style="-webkit-column-count:2; column-count:2; column-fill: auto; opacity: 0.5; height: 20px;"> 12 <div id="target" style="-webkit-column-count:2; column-count:2; column-fill: auto; opacity: 0.5; height: 20px;">
13 <div style="position:relative;"></div> 13 <div style="position:relative;"></div>
14 </div> 14 </div>
15 <div id="widener" style="height: 10px; width: 200%;"></div> 15 <div id="widener" style="height: 10px; width: 200%;"></div>
16 <script> 16 <script>
17 function test() 17 function test()
18 { 18 {
19 document.getElementById("widener").style.removeProperty("width"); 19 document.getElementById("widener").style.removeProperty("width");
20 document.getElementById("target").style.removeProperty("-webkit-colu mn-count"); 20 document.getElementById("target").style.removeProperty("-webkit-colu mn-count");
21 } 21 }
22 22
23 window.scrollBy(1, 0); 23 window.scrollBy(1, 0);
24 if (window.testRunner) 24 if (window.testRunner)
25 testRunner.dumpAsText(); 25 testRunner.dumpAsText();
26 runAfterDisplay(test); 26 runAfterDisplay(test);
27 </script> 27 </script>
28 </body> 28 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698