summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/writing-mode/margin-collapse.html
blob: e9ac5a2963ed5e552b20f56646b718d86b2dac4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<style>
.block { width:100px; height:100px; margin:2em 1em; background-color:green }
</style>
<body>
<div style="border:2px solid black">
<div style="-webkit-writing-mode:vertical-lr" class="block"></div>
<div style="-webkit-writing-mode:vertical-rl" class="block"></div>
<div style="-webkit-writing-mode:horizontal-bt" class="block"></div>
<div class="block"></div>
</div>
</body>
</html>