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

Unified Diff: LayoutTests/fast/box-shadow/scaled-box-shadow.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/fast/box-shadow/scaled-box-shadow.html
diff --git a/LayoutTests/fast/box-shadow/scaled-box-shadow.html b/LayoutTests/fast/box-shadow/scaled-box-shadow.html
index c629b2da00e4f3f550429ba9440cad5a0ba595f9..b419d7927d232d1ef04ed7001bdd4f45d75e8dd5 100644
--- a/LayoutTests/fast/box-shadow/scaled-box-shadow.html
+++ b/LayoutTests/fast/box-shadow/scaled-box-shadow.html
@@ -24,20 +24,20 @@
<body>
<!-- You should not see any pixel cracks in the shadows -->
<div class="wrapper">
- <div class="box" style="-webkit-transform: scale(0.63)"></div>
+ <div class="box" style="transform: scale(0.63)"></div>
</div>
<div class="wrapper">
- <div class="box" style="-webkit-transform: scale(0.97)"></div>
+ <div class="box" style="transform: scale(0.97)"></div>
</div>
<br>
<div class="wrapper">
- <div class="box" style="-webkit-transform: scale(1.234)"></div>
+ <div class="box" style="transform: scale(1.234)"></div>
</div>
<div class="wrapper">
- <div class="box" style="-webkit-transform: rotate(90deg) scale(1.377); -webkit-transform-origin: center;"></div>
+ <div class="box" style="transform: rotate(90deg) scale(1.377); -webkit-transform-origin: center;"></div>
</div>
</body>
« no previous file with comments | « LayoutTests/fast/box-shadow/box-shadow-transformed.html ('k') | LayoutTests/fast/box-shadow/single-pixel-shadow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698