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
/
block
/
positioning
/
positioned-layout-in-line-expected.html
blob
2ddec293c37fe948ea45ff88a98f3e63711b43fd
1
<!DOCTYPE
HTML
>
2
<style>
3
#container {
4
position: relative;
5
}
6
.img {
7
position: absolute;
8
background-color: green;
9
height:
10
px;
10
width:
10
px;
11
top:
0
;
12
}
13
</style>
14
<div
id
=
"container"
>
15
<input
type
=
"text"
></input>
16
<img
class
=
"img"
id
=
"img"
>
17
</div>
18
crbug.com/
498290
: Tests positioned movement layout when it has a non-static block position and sits in a line. The green image should be beside the input box.