repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git]
/
layout
/
reftests
/
writing-mode
/
1147834-relative-overconstrained-vertical-lr-rtl.html
blob
9221df101284edbf9c63beabe94c89de8dbffe5d
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<meta
charset
=
"utf-8"
>
5
<title>
Overconstrained relative positioning
</title>
6
<style>
7
.test {
8
border:
1
px solid black;
9
height:
200
px;
10
width:
400
px;
11
writing-mode: vertical-lr;
12
direction: rtl;
13
}
14
#inner1 {
15
position: relative;
16
left:
40
px;
17
right:
40
px;
18
top:
20
px;
19
bottom:
20
px;
20
height:
180
px;
21
width:
360
px;
22
background-color: teal;
23
}
24
</style>
25
</head>
26
<body>
27
<div
class
=
"test"
>
28
<div
id
=
"inner1"
></div>
29
</div>
30
</body>
31
</html>