summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/negative-text-indent-in-inline-block-expected.html
blob: b7507eedbb96fff913f059486be762db4b5336f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<style>
.inlineBlock {
  display: inline-block;
  border: solid black 1px;
  text-indent: -30px;
}

#ltr > div {
  padding-left: 30px;
}

#rtl {
	direction: rtl;
}

#rtl > div {
  padding-right: 30px;
}
</style>
</head>
<body>
<p>None of the inline text boxes below should have wrapping text.</p>
<div id="ltr">
<div class="inlineBlock">This here</div>
<div class="inlineBlock">This here</div>
</div>
<div id="rtl">
<div class="inlineBlock">This here</div>
<div class="inlineBlock">This here</div>
</div>