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

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

Issue 803213004: [New Multicolumn] Handle overflow inside spanners correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html
diff --git a/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html b/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..71183a5e3bbc74477797ef1a38811a00385c986e
--- /dev/null
+++ b/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<script>
+ onload = function() {
+ document.getElementById('target').scrollTop = 10000;
+ }
+</script>
+<p>You should see the word 'PASS' below.</p>
+<div id="target" style="overflow:scroll; line-height:2em; height:4em;">
+ <!-- We need the below block with restricted height, like in the test. One might think it
+ doesn't matter, but because of crbug.com/450202 (which might not even be a bug), it
+ does. -->
+ <div style="height:2em;">
+ <br><br><br><br>PASS
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698