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

Unified Diff: LayoutTests/fast/multicol/span/overflow-on-multicol.html

Issue 803213004: [New Multicolumn] Handle overflow inside spanners correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: code review Created 5 years, 11 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/span/overflow-on-multicol.html
diff --git a/LayoutTests/fast/multicol/span/overflow-on-multicol.html b/LayoutTests/fast/multicol/span/overflow-on-multicol.html
new file mode 100644
index 0000000000000000000000000000000000000000..882bf1feab46b69724b231985aba68f9dfe77374
--- /dev/null
+++ b/LayoutTests/fast/multicol/span/overflow-on-multicol.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<script>
+ onload = function() {
+ document.getElementById('target').scrollTop = 1000;
+ }
+</script>
+<div style="position:fixed;">
+ <p>Test that overflow on a spanner is propagated to its scrollable multicol container.</p>
+ <p>You should see the word 'PASS' below.</p>
+</div>
+<div id="target" style="overflow:scroll; line-height:2em; height:4em; -webkit-columns:4;">
+ <div style="-webkit-column-span:all; height:2em;">
+ <br><br><br><br>PASS
+ </div>
+</div>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698