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

Side by Side Diff: LayoutTests/fast/overflow/overflow-dirty-relayout-boundary-no-crash.html

Issue 255433003: RenderBlock::isSelfCollapsingBlock() should early exit on a relayout boundary (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add test Created 6 years, 8 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/fast/overflow/overflow-dirty-relayout-boundary-no-crash-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 <style>
3 #relayout-boundary {
4 transform: translateX(0);
5 overflow: hidden;
6 width: 100px;
7 height: 100px;
8 }
9 </style>
10 <div id="relayout-boundary">
11 <div id="layout-target">
12 This test queries layout overflow for propagation on a relayout boundary that has dirty layout.
13 It should not trigger assertions that assume clean layout.
14 </div>
15 </div>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19
20 document.body.scrollWidth;
21
22 var layoutTarget = document.getElementById("layout-target");
23 layoutTarget.style.width = "99px";
24
25 var relayoutBoundary = document.getElementById("relayout-boundary");
26 relayoutBoundary.style.transform = "translateX(1px)";
27
28 document.body.scrollWidth;
29 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/overflow/overflow-dirty-relayout-boundary-no-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698