Index: LayoutTests/compositing/squashing/clipping-ancestor.html |
diff --git a/LayoutTests/compositing/squashing/clipping-ancestor.html b/LayoutTests/compositing/squashing/clipping-ancestor.html |
index ebcfd621e8777f80dd65e4542da2d7481009c69f..470938c1d368c039cd287091c1aff879f9488d1a 100644 |
--- a/LayoutTests/compositing/squashing/clipping-ancestor.html |
+++ b/LayoutTests/compositing/squashing/clipping-ancestor.html |
@@ -1,7 +1,7 @@ |
<!DOCTYPE html> |
<style> |
.hoverable:hover { |
- -webkit-transform: translateZ(0); |
+ transform: translateZ(0); |
} |
</style> |
<script> |
@@ -20,7 +20,7 @@ |
window.addEventListener('load', dumpLayers, false) |
</script> |
<div style="overflow: hidden; height: 10px; width: 200px; background-color: lightblue"> |
- <div id="inner" style="-webkit-transform: translateZ(0); height: 10px; background-color: whitesmoke"></div> |
+ <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 --> |
<div class="hoverable" style="position:absolute; top: 0px; height:100px; width:100px; background-color: lightgreen"></div> |