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

Unified Diff: LayoutTests/transforms/3d/point-mapping/3d-point-mapping-deep.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/transforms/3d/point-mapping/3d-point-mapping-deep.html
diff --git a/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-deep.html b/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-deep.html
index 60b637c18f75d44a02ad74e35942988a6b7e829a..ed40188ae226631967fdb6eef0a720464cdf3ad6 100644
--- a/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-deep.html
+++ b/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-deep.html
@@ -76,7 +76,7 @@
background-color: #81AA8A;
-webkit-transform-style: preserve-3d;
-webkit-box-sizing: border-box;
- -webkit-transform: rotateY(20deg);
+ transform: rotateY(20deg);
}
.transformed-flat {
@@ -120,11 +120,11 @@
<!-- Flatten in the middle of 3d -->
<div class="container box" id="box1">
<div class="transformed-3d box" id="box2">
- <div class="transformed-3d box" style="-webkit-transform: translateZ(40px) rotateX(10deg)" id="box3">
- <div class="transformed-flat box" style="-webkit-transform: translate3d(0, 20px, 40px) rotateX(-15deg)" id="box4">
+ <div class="transformed-3d box" style="transform: translateZ(40px) rotateX(10deg)" id="box3">
+ <div class="transformed-flat box" style="transform: translate3d(0, 20px, 40px) rotateX(-15deg)" id="box4">
<div class="transformed-flat box" style="-webkit-perspective: 500" id="box5">
- <div class="transformed-3d box" style="-webkit-transform-origin: top left; -webkit-transform: rotateY(-15deg);" id="box6">
- <div class="transformed-3d box" style="-webkit-transform-origin: top left; -webkit-transform: translateZ(20px)" id="box7">
+ <div class="transformed-3d box" style="-webkit-transform-origin: top left; transform: rotateY(-15deg);" id="box6">
+ <div class="transformed-3d box" style="-webkit-transform-origin: top left; transform: translateZ(20px)" id="box7">
<div class="inner" id="box8">
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698