blob: 3e004439e6c79eaaf3010b232b60837a57af30df (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1086883</title>
<!-- writing mode of #inner div should not affect its position within #outer -->
<style>
#outer {
width:400px;
height:300px;
padding:50px;
border:1px solid black;
}
#inner {
width:200px;
height:100px;
background:red;
writing-mode:vertical-lr;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">
</div>
</div>
</body>
</html>
|