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
/
paint
/
overflow
/
fixed-children-should-not-scroll-expected.html
blob
86c7178fecb4e9fe7c01817bcd711a99c96709be
1
<!DOCTYPE
html
>
2
<style>
3
#fixed {
4
position: absolute;
5
left:
300
px;
6
top:
200
px;
7
width:
100
px;
8
height:
100
px;
9
background-color: green;
10
}
11
12
#fixed-child {
13
position: absolute;
14
left:
25
px;
15
top:
25
px;
16
width:
50
px;
17
height:
50
px;
18
background-color: blue;
19
}
20
</style>
21
<div
id
=
"fixed"
>
22
<div
id
=
"fixed-child"
></div>
23
</div>