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

Unified Diff: LayoutTests/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html
diff --git a/LayoutTests/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html b/LayoutTests/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html
index 447a9bcb71b6c3a1803e6591e577dc95130020be..1e5ad81b416c0aad264cb410de7469f5becf6d8a 100644
--- a/LayoutTests/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html
+++ b/LayoutTests/transforms/3d/hit-testing/hover-rotated-with-children-negative-z.html
@@ -4,7 +4,7 @@
<style>
#transformed {
- -webkit-transform: translateY(50px) rotateX(20deg) rotateZ(10deg);
+ transform: translateY(50px) rotateX(20deg) rotateZ(10deg);
padding: 10px;
margin: 15px;
background-color: Yellow;
@@ -14,12 +14,12 @@
height: 150px;
}
#child1 {
- -webkit-transform: rotateX(45deg) rotateZ(45deg) translateZ(-500px) translateX(-300px) translateY(-180px);
+ transform: rotateX(45deg) rotateZ(45deg) translateZ(-500px) translateX(-300px) translateY(-180px);
height: 30px;
background-color: Lime;
}
#child2 {
- -webkit-transform: translateZ(-500px) rotateX(-45deg) rotateZ(-45deg) translateX(50px) translateY(-130px);
+ transform: translateZ(-500px) rotateX(-45deg) rotateZ(-45deg) translateX(50px) translateY(-130px);
height: 30px;
background-color: Cyan;
}

Powered by Google App Engine
This is Rietveld 408576698