Sign in
webkit
/
WebKit
/
2460f0f427f628fc375ef165c5dc0d6e83a008e8
/
.
/
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>