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

Unified Diff: LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner.html

Issue 1120313003: [New Multicolumn] Simplified layout also needs to mark spanner placeholders for layout. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/relayout-abspos-in-relpos-spanner-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner.html
diff --git a/LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner.html b/LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner.html
new file mode 100644
index 0000000000000000000000000000000000000000..e423ff79c8169f09b8b4129267cf3af0dc2f6800
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<p>Relayout an aboslutely positioned object whose containing block is a column-span:all object.</p>
+<p>There should be a green <em>square</em> below, and no red.</p>
+<div style="-webkit-columns:3;">
+ <div style="position:relative; -webkit-column-span:all; width:10em; height:10em; background:red;">
+ <div id="elm" style="position:absolute; height:10em; background:green;"></div>
+ </div>
+</div>
+<script>
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById('elm').style.width = '10em';
+ }
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/relayout-abspos-in-relpos-spanner-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698