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

Unified Diff: LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos.html

Issue 1110383002: [New Multicolumn] Out-of-flow objects don't establish column sets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review. Created 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos.html
diff --git a/LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos.html b/LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos.html
new file mode 100644
index 0000000000000000000000000000000000000000..63d341703bd8efcd190b843486af0d04881617b3
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<p>Insert an in-flow object before an absolutely positioned element that up until now was the only
+ multicol child.</p>
+<p>PASS if no assertion failure or crash.</p>
+<div style="-webkit-columns:2;">
+ <div id="elm" style="display:none;"></div>
+ <div style="position:absolute;"></div>
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById('elm').style.display = 'block';
+ }
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-before-sole-abspos-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698