Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/multicol/vertical-rl/rules-with-border-before.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <style>
2 div.test {
3 width: 100px;
4 height: 100px;
5 -webkit-writing-mode: vertical-rl;
6 -webkit-columns: 2;
7 -webkit-column-rule: 50px solid orange;
8 -webkit-column-gap: 50px;
9 columns: 2;
10 column-rule: 50px solid orange;
11 column-gap: 50px;
12 column-fill: auto;
13 }
14
15 div.test div { width: 200px; }
16 </style>
17 <div class="test" style="-webkit-border-before: 50px solid blue;"><div></div></d iv>
18 <div class="test" style="-webkit-border-after: 50px solid blue;"><div></div></di v>
OLDNEW

Powered by Google App Engine