Sign in
webkit
/
WebKit
/
73559930a6418bc4621c1c5774b11e1be9c21a8f
/
.
/
LayoutTests
/
compositing
/
backgrounds
/
negative-z-index-behind-body.html
blob: efc8778adc219f8da7dee5abb1c93eb056def92d [
file
] [
log
] [
blame
]
<style>
body
{
position
:
relative
;
background
:
white
;
}
div
{
position
:
absolute
;
z-index
:
-
1
;
transform
:
translateZ
(
0
);
}
.
green
{
background-color
:
green
;
width
:
200px
;
height
:
200px
;
}
</style>
<body>
<div
class
=
"green"
></div>
<div></div>