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
/
absolute-with-html-border-strict.html
blob
52f3ef4aba938e52396ab9aaad28e7c03ae96fe1
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style
type
=
"text/css"
>
5
html
{
6
border
:
100px
solid black
;
7
}
8
#test
{
9
position
:
absolute
;
10
bottom
:
0
;
11
right
:
0
;
12
height
:
200px
;
13
width
:
200px
;
14
background
:
green
;
15
}
16
</style>
17
</head>
18
<body>
19
<div
id
=
"test"
>
This should be in the bottom right-hand corner of the viewport even when resizing.
</div>
20
</body>
21
</html>