Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / floats-and-text-indent-rl.html
blob8400edf2752b6c9c68936bc710bfe8b8b871513d
1 <!DOCTYPE html>
2 <style>
3 #container {
4 text-indent: 100px;
5 width: 200px;
6 border: 1px solid black;
8 #float {
9 float: right;
10 width: 50px;
11 height: 50px;
12 background: green;
14 </style>
15 <div id="container" dir="RTL">
16 <div id="float"></div>
17 Some text that should not overlap the edge of the container.
18 </div>