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
/
paint
/
invalidation
/
spv2
/
invalidations-on-composited-layers-expected.html
blob
ac9c6a0af5f1fba28433635c9c5b69838f33fb7b
1
<!DOCTYPE
html
>
2
3
<!--
4
This test checks that repaint testing works with composited layers.
5
-->
6
7
<html>
8
<head>
9
<style
type
=
"text/css"
>
10
#parent
{
11
width
:
400px
;
12
height
:
400px
;
13
background
:
green
;
14
}
15
16
#child
{
17
position
:
relative
;
18
left
:
50px
;
19
top
:
50px
;
20
width
:
75px
;
21
height
:
75px
;
22
background
:
blue
;
23
}
24
25
</style>
26
</head>
27
<body>
28
<div
id
=
"parent"
>
29
<div
id
=
"child"
></div>
30
</div>
31
</body>
32
</html>