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

Side by Side Diff: LayoutTests/fast/multicol/resources/block-axis.css

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master (fixed the DOS-style line break issue there) Created 6 years, 9 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
OLDNEW
(Empty)
1 body {
2 margin: 0;
3 }
4
5 div {
6 -webkit-logical-width: 200px;
7 -webkit-logical-height: 150px;
8 -webkit-column-gap: 30px;
9 -webkit-column-rule-width: 10px;
10 -webkit-column-rule-style: solid;
11 outline: 1px dashed lightblue;
12 -webkit-margin-after: 360px;
13 -webkit-border-before: 20px solid silver;
14 -webkit-margin-start: 20px;
15 }
16
17 div.horizontal
18 {
19 -webkit-column-axis: vertical;
20 }
21
22 div.horizontal.flipped
23 {
24 -webkit-writing-mode: horizontal-bt;
25 }
26
27 div.vertical
28 {
29 -webkit-writing-mode: vertical-lr;
30 -webkit-column-axis: horizontal;
31 }
32
33 div.vertical.flipped
34 {
35 -webkit-writing-mode: vertical-rl;
36 }
37
38 span {
39 background-color: yellow;
40 position: relative;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698