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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/multicol-nested.html

Issue 1907443003: Translate flow thread coords to the nearest enclosing coord space when appropriate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a unit test too. Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <script>
4 runAfterLayoutAndPaint(function() {
5 document.getElementById("target").style.background = "green";
6 }, true);
7 </script>
8 <p>A green box should be seen in the bottom right corner of the yellow box.</p>
9 <div style="columns:2; column-fill:auto; height:40px; column-gap:10px; width:630 px; line-height:20px; orphans:1; widows:1; background:yellow;">
10 <div><br></div>
11 <div style="columns:2; column-gap:10px;">
12 <div><br></div>
13 <div style="columns:2; column-gap:10px;">
14 <div><br></div>
15 <div><br></div>
16 <div><br></div>
17 <div><br></div>
18 <div><br></div>
19 <div><br></div>
20 <div><br></div>
21 <div><br></div>
22 <div><br></div>
23 <div id="target"><br></div>
24 </div>
25 </div>
26 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698