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

Unified Diff: LayoutTests/svg/transforms/svg-css-transforms.xhtml

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/svg/transforms/svg-css-transforms.xhtml
diff --git a/LayoutTests/svg/transforms/svg-css-transforms.xhtml b/LayoutTests/svg/transforms/svg-css-transforms.xhtml
index bae40ad60a7c19461785a379a208fa311a066722..44d9f27ce656af5dd7c45b7cc4315d1745ae78f1 100644
--- a/LayoutTests/svg/transforms/svg-css-transforms.xhtml
+++ b/LayoutTests/svg/transforms/svg-css-transforms.xhtml
@@ -34,19 +34,19 @@
}
#group1 {
- -webkit-transform: translate(75px, 25px);
+ transform: translate(75px, 25px);
}
#group2 {
- -webkit-transform: scale(2);
+ transform: scale(2);
}
#group3 {
- -webkit-transform: rotate(45deg);
+ transform: rotate(45deg);
}
#rect1 {
- -webkit-transform: translate(75px, 25px) scale(2) rotate(45deg);
+ transform: translate(75px, 25px) scale(2) rotate(45deg);
}
.final {
@@ -74,9 +74,9 @@
<h2>CSS nested</h2>
<div class="container">
- <div id="box1" class="box" style="-webkit-transform: translate(75px, 25px)">
- <div id="box2" class="box" style="-webkit-transform: scale(2)">
- <div id="box3" class="final box" style="-webkit-transform: rotate(45deg)">
+ <div id="box1" class="box" style="transform: translate(75px, 25px)">
+ <div id="box2" class="box" style="transform: scale(2)">
+ <div id="box3" class="final box" style="transform: rotate(45deg)">
</div>
</div>
</div>
@@ -94,7 +94,7 @@
<h2>CSS compound</h2>
<div class="container">
- <div class="final box" style="-webkit-transform: translate(75px, 25px) scale(2) rotate(45deg)">
+ <div class="final box" style="transform: translate(75px, 25px) scale(2) rotate(45deg)">
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698