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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/margin-collapse/webkit-margin-collapse-siblings-bt-expected.html

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 years, 1 month 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 <html>
2 <head>
3 <style>
4 div {
5 margin: 0px;
6 }
7
8 .container {
9 border: thin solid blue;
10 width: 300px;
11 }
12
13 .block {
14 background-color: green;
15 margin-top: 4px;
16 margin-bottom: 6px;
17 border: 1px dashed black;
18 -webkit-writing-mode: horizontal-bt;
19 }
20
21 .collapse_top:before, .collapse_bottom:after {
22 content: "Collapse";
23 }
24
25 .discard_top:before, .discard_bottom:after {
26 content: "Discard";
27 }
28
29 .separate_top:before, .separate_bottom:after {
30 content: "Separate";
31 }
32
33 #b2 {
34 margin-top: 6px;
35 margin-bottom: 0px;
36 }
37
38 #b3 {
39 margin-top: 6px;
40 margin-bottom: 0px;
41 }
42
43 #b4 {
44 margin-top: 6px;
45 margin-bottom: 0px;
46 }
47
48 #b5 {
49 margin-top: 0px;
50 margin-bottom: 0px;
51 }
52
53 #b6 {
54 margin-top: 0px;
55 margin-bottom: 0px;
56 }
57
58 #b7 {
59 margin-top: 14px;
60 margin-bottom: 0px;
61 }
62
63 #b8 {
64 margin-top: 4px;
65 margin-bottom: 0px;
66 }
67
68 #b9 {
69 margin-top: 10px;
70 margin-bottom: 10px;
71 }
72
73 #b10 {
74 margin-top: 0px;
75 margin-bottom: 0px;
76 }
77 </style>
78 </head>
79 <body>
80 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=108 168">Implement the -webkit-margin-collapse properties correct rendering</a>.</p>
81 <p>This ref test covers basic collapsing behavior between siblin g boxes when using -webkit-margin-collapse. The blocks have lr-bt writing mode.< /p>
82 <div class="container">
83 <div id="b1" class="block collapse_top collapse_bottom"> <br/></div>
84 <div id="b2" class="block collapse_top collapse_bottom"> <br/></div>
85 <div id="b3" class="block separate_top collapse_bottom"> <br/></div>
86 <div id="b4" class="block discard_top discard_bottom"><b r/></div>
87 <div id="b5" class="block collapse_top discard_bottom">< br/></div>
88 <div id="b6" class="block separate_top discard_bottom">< br/></div>
89 <div id="b7" class="block discard_top separate_bottom">< br/></div>
90 <div id="b8" class="block collapse_top separate_bottom"> <br/></div>
91 <div id="b9" class="block separate_top separate_bottom"> <br/></div>
92 <div id="b10" class="block discard_top collapse_bottom"> <br/></div>
93 </div>
94 </body>
95 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698