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

Unified Diff: third_party/WebKit/ManualTests/image-resampling-with-scale.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 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: third_party/WebKit/ManualTests/image-resampling-with-scale.html
diff --git a/third_party/WebKit/ManualTests/image-resampling-with-scale.html b/third_party/WebKit/ManualTests/image-resampling-with-scale.html
index 35a1a8cb95c800602b92f3a4da3b6d6ce1603e32..718724ae22cf01268eb51e3b7b12e4c2ca25d5b6 100644
--- a/third_party/WebKit/ManualTests/image-resampling-with-scale.html
+++ b/third_party/WebKit/ManualTests/image-resampling-with-scale.html
@@ -16,8 +16,8 @@ function doScaleTest() {
image2.setAttribute('src', imgSrc);
intervalId = setInterval(function() {
scale += 0.001;
- image1.style.webkitTransform = 'scale(' + scale + ')';
- layer2.style.webkitTransform = 'scale(' + scale + ')';
+ image1.style.transform = 'scale(' + scale + ')';
+ layer2.style.transform = 'scale(' + scale + ')';
if (scale > 1.5)
window.clearInterval(intervalId);
}, 10);

Powered by Google App Engine
This is Rietveld 408576698