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

Unified Diff: LayoutTests/compositing/squashing/no-squashing-into-another-clip-layer.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/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 -->

Powered by Google App Engine
This is Rietveld 408576698