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