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

Unified Diff: LayoutTests/fast/multicol/overflow-unsplittable-expected.html

Issue 898963002: Rewrite fast/multicol/overflow-unsplittable.html as a reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/multicol/overflow-unsplittable-expected.html
diff --git a/LayoutTests/fast/multicol/overflow-unsplittable-expected.html b/LayoutTests/fast/multicol/overflow-unsplittable-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..e5d51fd1d79b30e9a987d4142fe37ba38620805e
--- /dev/null
+++ b/LayoutTests/fast/multicol/overflow-unsplittable-expected.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<p>Test that a scrollable container isn't split across multiple columns.</p>
+<p>There should be three columns below. The first one should contain "line1". The second one should
+ contain "line2", "line3", "line4" and a vertical scrollbar. The third one should contain
+ "line5". No red should be seen</p>
+<div style="width:32em; line-height:2em;">
+ <div style="float:left; width:11em;">
+ line1<br>
+ </div>
+ <div style="float:left; width:11em;">
+ <div style="overflow:auto; width:10em; height:6em;">
+ line2<br>
+ line3<br>
+ line4<br>
+ <span style="color:red;">FAIL</span>
+ </div>
+ </div>
+ <div style="float:left;">
+ line5<br>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698