blob: 6cdae9cddbd6854d12e3b6ac9091cde4a707f624 [file] [log] [blame]
<html>
<head>
<style>
.container {
width: 90px;
height: 90px;
color: green;
background-color: green;
margin: 10px;
}
</style>
</head>
<body>
<p>These tests set the shape-outside to the various boxes (margin/border/padding/content) with writing-mode: vertical-rl. They require the Ahem font. You should see green squares, with no red.</p>
<p>shape-outside: content-box</p>
<div class='container'>
</div>
<p>shape-outside: padding-box</p>
<div class='container'>
</div>
<p>shape-outside: border-box</p>
<div class='container'>
</div>
<p>shape-outside: margin-box</p>
<div class='container'>
</div>
</body>
</html>