Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Unified Diff: LayoutTests/compositing/squashing/clipping-ancestor.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698