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

Unified Diff: LayoutTests/transforms/2d/compound-transforms-vs-containers.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/2d/compound-transforms-vs-containers.html
diff --git a/LayoutTests/transforms/2d/compound-transforms-vs-containers.html b/LayoutTests/transforms/2d/compound-transforms-vs-containers.html
index 0555019ecf35157c9cb5d9c2e95bf22c61ca98e1..dc05877e6579810621af993ec11e09acab2abeed 100644
--- a/LayoutTests/transforms/2d/compound-transforms-vs-containers.html
+++ b/LayoutTests/transforms/2d/compound-transforms-vs-containers.html
@@ -30,26 +30,26 @@
<p>Test ensures that nested transformed elements produce the same result as a single compound transform.You should not see any red in the two tests below</p>
<div class="container">
<p>Translate first</p>
- <div style="-webkit-transform: translate(75px, 20px)">
- <div style="-webkit-transform: scale(1.6, 1.6)">
- <div style="-webkit-transform: rotate(45deg)">
+ <div style="transform: translate(75px, 20px)">
+ <div style="transform: scale(1.6, 1.6)">
+ <div style="transform: rotate(45deg)">
<div class="box" style="background-color: red">Individual</div>
</div>
</div>
</div>
- <div class="box" style="-webkit-transform: translate(75px, 20px) scale(1.6, 1.6) rotate(45deg);"></div>
+ <div class="box" style="transform: translate(75px, 20px) scale(1.6, 1.6) rotate(45deg);"></div>
</div>
<div class="container">
<p>Translate second</p>
- <div style="-webkit-transform: scale(1.6, 1.6)">
- <div style="-webkit-transform: translate(75px, 20px)">
- <div style="-webkit-transform: rotate(45deg)">
+ <div style="transform: scale(1.6, 1.6)">
+ <div style="transform: translate(75px, 20px)">
+ <div style="transform: rotate(45deg)">
<div class="box" style="background-color: red">Individual</div>
</div>
</div>
</div>
- <div class="box" style="-webkit-transform: scale(1.6, 1.6) translate(75px, 20px) rotate(45deg);"></div>
+ <div class="box" style="transform: scale(1.6, 1.6) translate(75px, 20px) rotate(45deg);"></div>
</div>
</body>
« no previous file with comments | « LayoutTests/transforms/2d/compound-2d-transforms.html ('k') | LayoutTests/transforms/2d/computed-style-origin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698