repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
overflow
/
overflow-auto-position-absolute.html
blob
4bc6baefafce0f1d66bc661a993269e16ea3894d
1
<html>
2
<head>
3
<style>
4
.outer {
5
position: absolute;
6
top:
16
px;
7
bottom:
16
px;
8
left:
16
px;
9
right:
16
px;
10
overflow: auto;
11
}
12
13
.inner {
14
position: absolute;
15
background-color: green;
16
top:
0
px;
17
left:
0
px;
18
right:
0
px;
19
height:
1024
px;
20
}
21
</style>
22
</head>
23
24
<body>
25
<div
class
=
"outer"
>
26
<div
class
=
"inner"
>
This test passes if there is no horizontal scrollbar.
</div>
27
</div>
28
</body>
29
</head>