blob: 929fd98837f2c5d2ca27e1f1559cb47729b55780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<title>Testcase, bug 764354</title>
<style>
#outer {
display: -moz-box;
overflow: hidden;
-moz-box-orient: vertical;
width: 300px;
height: 100px;
background: yellow; color: black;
}
.inner {
background: aqua; color: black;
text-align: center;
}
</style>
<div id="outer">
<div class="inner">Text</div>
<div class="inner">Text</div>
</div>
|