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

Side by Side Diff: LayoutTests/fast/multicol/span/span-as-nested-inline-block-child.html

Issue 1143153006: Remove old multicol tests that were only run with the old implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>Nested spanning elements inside of an inline-block</title>
5 </head>
6 <body>
7 <div style="-webkit-column-count: 2">
8 <div style="display: inline-block">
9 <p style="-webkit-column-span: all">
10 This text should not be spanned across two columns.
11 </p>
12
13 <p>
14 This text should be below the previous text, but still on the left.
15 </div>
16
17 <span>
18 The beginning of this text should start next to or below the previous text, and still in the left column. However, when made sufficiently longer than the previo us block of text, it should spill into the right column instead of staying below the block before it.
19 </span>
20 </div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698