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
/
rtl
/
rtl-overflow-scrolling.html
blob
00991902bddc8a949351701d9ece9852f87e7819
1
<html>
2
<head>
3
<script
type
=
"text/javascript"
>
4
if
(
window
.
internals
)
5
window
.
internals
.
settings
.
setPreferCompositingToLCDTextEnabled
(
true
);
6
7
function
runTest
() {
8
document
.
getElementById
(
"container"
).
scrollLeft
=
0
;
9
}
10
</script>
11
<style>
12
#container {
13
direction: rtl;
14
overflow: scroll;
15
width:
300
px;
16
height:
300
px;
17
}
18
#overflow {
19
width:
1000
px;
20
height:
1000
px;
21
background-color: green;
22
}
23
</style>
24
</head>
25
<body
onload
=
"runTest();"
>
26
<div
id
=
"container"
>
27
<div
id
=
"overflow"
>
28
</div>
29
</div>
30
</body>
31
</html>