diff options
author | mstensho@opera.com <mstensho@opera.com> | 2015-08-17 10:12:13 +0000 |
---|---|---|
committer | mstensho@opera.com <mstensho@opera.com> | 2015-08-17 10:12:13 +0000 |
commit | 01844c28b8e107bae59e93ae5ddaeb479b059bb4 (patch) | |
tree | 01e6ab56b5e3b2073b4bc5a5aed53f6577f54a28 /third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html | |
parent | 3a54d42e3da8b423a70f23ca08ea1f01961a7d8b (diff) | |
download | chromium_src-01844c28b8e107bae59e93ae5ddaeb479b059bb4.zip chromium_src-01844c28b8e107bae59e93ae5ddaeb479b059bb4.tar.gz chromium_src-01844c28b8e107bae59e93ae5ddaeb479b059bb4.tar.bz2 |
Initial support for nested multicol layout.
Nested column balancing doesn't work yet. Also no support for mapping visual
points to flow thread points (which is used by a few operations, but not by the
most common ones, like painting and hit-testing).
There are other corner-cases to sort out, too.
Still no support for printing multicol documents, but that's the ultimate goal
of this work.
BUG=447718
R=jchaffraix@chromium.org,leviw@chromium.org
Review URL: https://codereview.chromium.org/1292163002
git-svn-id: svn://svn.chromium.org/blink/trunk@200639 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html b/third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html new file mode 100644 index 0000000..a277d1c --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/multicol/nested-outer-fixed-height-expected.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<style> + .column { float:left; width:1em; } +</style> +<p>Test that we establish two column rows for the contents of an inner multicol container that + crosses a column boundary in the outer multicol container.</p> +<p>The word "PASS" should be seen below, with large letter spacing, and no red.</p> +<div style="line-height:2em;"> + <div class="column">P</div> + <div class="column">A</div> + <div class="column">S</div> + <div class="column">S</div> +</div> |