Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / negative-text-indent-in-inline-block-expected.html
blobb7507eedbb96fff913f059486be762db4b5336f4
1 <html>
2 <head>
3 <style>
4 .inlineBlock {
5 display: inline-block;
6 border: solid black 1px;
7 text-indent: -30px;
10 #ltr > div {
11 padding-left: 30px;
14 #rtl {
15 direction: rtl;
18 #rtl > div {
19 padding-right: 30px;
21 </style>
22 </head>
23 <body>
24 <p>None of the inline text boxes below should have wrapping text.</p>
25 <div id="ltr">
26 <div class="inlineBlock">This here</div>
27 <div class="inlineBlock">This here</div>
28 </div>
29 <div id="rtl">
30 <div class="inlineBlock">This here</div>
31 <div class="inlineBlock">This here</div>
32 </div>