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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/repaint/multicol-nested.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/multicol-nested.html b/third_party/WebKit/LayoutTests/fast/repaint/multicol-nested.html
new file mode 100644
index 0000000000000000000000000000000000000000..042e8fb80a815a8a8ab6571efde0aa963ecf7ceb
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/repaint/multicol-nested.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<script src="../../resources/run-after-layout-and-paint.js"></script>
+<script>
+ runAfterLayoutAndPaint(function() {
+ document.getElementById("target").style.background = "green";
+ }, true);
+</script>
+<p>A green box should be seen in the bottom right corner of the yellow box.</p>
+<div style="columns:2; column-fill:auto; height:40px; column-gap:10px; width:630px; line-height:20px; orphans:1; widows:1; background:yellow;">
+ <div><br></div>
+ <div style="columns:2; column-gap:10px;">
+ <div><br></div>
+ <div style="columns:2; column-gap:10px;">
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div><br></div>
+ <div id="target"><br></div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698