Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-floats-different-writing-modes-expected.html
blob1680c9f5d7e23688f62e2d62cfc65ad171f04991
1 <!DOCTYPE html>
2 <title>shape-outside on floats with a different writing mode in the float and the container</title>
3 <style>
4 .container {
5 font: 20px/1 Ahem;
7 .float {
8 height: 20px;
9 width: 40px;
10 margin: 0px 20px;
11 background-color: red;
12 color: green;
13 float: left;
15 </style>
16 <body>
17 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=122243">Bug 122243</a> - [css-shapes] shape-outside does not properly handle the container and the float having different writing modes</p>
18 <p>You should see a single green rectangle. You should not see any red.</p>
19 <div class="container">
20 <div class="float">XX</div>
21 </div>
22 </body>