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
/
compositing
/
framesets
/
resources
/
composited-subframe.html
blob
3e3dd224f23458fafeed848fcd7caad1658ea9bc
1
<!DOCTYPE
html
>
2
3
<html>
4
<head>
5
<style
type
=
"text/css"
media
=
"screen"
>
6
body {
7
overflow:hidden;
8
}
9
10
.box {
11
position:absolute;
12
height:
200
px;
13
width:
200
px;
14
margin:
10
px;
15
padding:
5
px;
16
background-color: green;
17
transform: translateZ(
0
);
18
overflow:hidden;
19
}
20
.box:hover {
21
transform: none;
22
}
23
.testbox {
24
position:absolute;
25
height:
200
px;
26
width:
200
px;
27
margin:
10
px;
28
margin-left:
10
px;
29
background-color: red;
30
}
31
</style>
32
</head>
33
<body>
34
<div
class
=
"testbox"
></div>
35
<div
id
=
"frame-content"
class
=
"box"
></div>
36
37
</body>
38
</html>