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
/
rtl-fixed-positioning.html
blob
9eac74d70275f8b0c60e4d75d6fea6adc058ba70
1
<!doctype
html
>
2
<html
dir='rtl'
>
3
<head>
4
<style>
5
.container {
6
background-color: #
0
f0;
7
height:
2000
px;
8
width:
2000
px;
9
}
10
.floater {
11
background-color: #f0f;
12
height:
100
px;
13
left:
0
;
14
position: fixed;
15
top:
0
;
16
width:
100
px;
17
}
18
body {
19
overflow:hidden;
20
}
21
</style>
22
</head>
23
<body>
24
25
<div
class
=
"container"
>
26
<div
class
=
"floater"
dir
=
"ltr"
>
This box should be fixed to the top-left of the window.
27
</div>
28
</div>
29
30
<script>
31
window
.
scrollBy
(-
100
,
100
);
32
</script>