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

Unified Diff: LayoutTests/transforms/3d/point-mapping/3d-point-mapping-2.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-2.html
diff --git a/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-2.html b/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-2.html
index 636d028bbe84c15bcad83fe90b2041aab278e030..990a31ffa5635e98fd6310836e7689d55b8ab3e0 100644
--- a/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-2.html
+++ b/LayoutTests/transforms/3d/point-mapping/3d-point-mapping-2.html
@@ -89,7 +89,7 @@
background-color: blue;
height: 90px;
width: 90px;
- -webkit-transform: rotateY(30deg);
+ transform: rotateY(30deg);
}
#results {
@@ -114,7 +114,7 @@
<div class="test">
<!-- preserve-3d element with no transform-->
<div class="container box" id="box1">
- <div class="transformed-3d box" style="-webkit-transform: rotateY(-30deg);" id="box2">
+ <div class="transformed-3d box" style="transform: rotateY(-30deg);" id="box2">
<div class="transformed-3d box" id="box3">
<div class="inner box" id="box4">
</div>
@@ -126,7 +126,7 @@
<div class="test">
<!-- layer with no transform-->
<div class="container box" id="box5">
- <div class="transformed-3d box" style="-webkit-transform: rotateY(-30deg);" id="box6">
+ <div class="transformed-3d box" style="transform: rotateY(-30deg);" id="box6">
<div class="box" style="position: relative; padding-left: 20px" id="box7">
<div class="inner box" id="box8">
</div>
@@ -138,7 +138,7 @@
<div class="test">
<!-- non-layer with no transform-->
<div class="container box" id="box9">
- <div class="transformed-3d box" style="-webkit-transform: rotateY(-30deg);" id="box10">
+ <div class="transformed-3d box" style="transform: rotateY(-30deg);" id="box10">
<div class="box" style="padding-left: 20px" id="box11">
<div class="inner box" id="box12">
</div>

Powered by Google App Engine
This is Rietveld 408576698