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
/
will-change
/
containing-block-added-expected.html
blob
a45bfefa06ee19185136d9617f174519d7790703
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
#container {
6
transform: translateZ(
0
);
7
position: absolute;
8
left:
200
px;
9
top:
100
px;
10
width:
100
px;
11
height:
100
px;
12
background-color: blue;
13
}
14
15
.fixed {
16
position: fixed;
17
left:
50
px;
18
top:
50
px;
19
width:
75
px;
20
height:
75
px;
21
background-color: green
22
}
23
</style>
24
</head>
25
26
<body>
27
<div
id
=
"container"
>
28
<div
class
=
"fixed"
></div>
29
</div>
30
</body>
31
32
</html>