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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
compositing
/
squashing
/
abspos-under-abspos-overflow-scroll-expected.html
blob
10b1ed4412a7cc95d699d24bf2178db94b859731
1
<style
type
=
"text/css"
>
2
.first
{
3
height
:
400px
;
4
background-color
:
red
;
5
}
6
7
.second
{
8
left
:
100px
;
9
bottom
:
0px
;
10
background-color
:
blue
;
11
width
:
7px
;
12
height
:
562px
;
13
position
:
absolute
;
14
}
15
16
.outer
{
17
overflow
:
scroll
;
18
/* FIXME: make this height: 500px to expose another bug */
19
height
:
600px
;
20
width
:
500px
;
21
position
:
absolute
;
22
bottom
:
10px
;
23
background-color
:
grey
;
24
}
25
</style>
26
<div
class
=
"outer"
>
27
<div
class
=
"first"
> </div>
28
<div
class
=
"second"
> </div>
29
</div>