Index: LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.html |
diff --git a/LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.html b/LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.html |
index a7dc88bf32c3f0f6828713da0fe7909d7fcab21f..71fbdd212433cbd494661158a5f546b2384849b0 100644 |
--- a/LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.html |
+++ b/LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.html |
@@ -1,7 +1,7 @@ |
<!DOCTYPE html> |
<style> |
.hoverable:hover { |
- -webkit-transform: translateZ(0); |
+ transform: translateZ(0); |
} |
</style> |
<script> |
@@ -19,8 +19,8 @@ |
} |
window.addEventListener('load', dumpLayers, false) |
</script> |
-<div style="-webkit-transform: translateZ(0); overflow: hidden; height: 10px; background-color: lightblue"> |
- <div id="inner" style="-webkit-transform: translateZ(0); height: 10px; background-color: whitesmoke"> |
+<div style="transform: translateZ(0); overflow: hidden; height: 10px; background-color: lightblue"> |
+ <div id="inner" style="transform: translateZ(0); height: 10px; background-color: whitesmoke"> |
</div> |
</div> |
<!-- This div should not sqaush into the inner div, because it is inside an overflow:hidden div which therefore clips differently than this div's parent --> |