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

Unified Diff: LayoutTests/svg/custom/filter-css-transform-resolution.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/svg/custom/filter-css-transform-resolution.html
diff --git a/LayoutTests/svg/custom/filter-css-transform-resolution.html b/LayoutTests/svg/custom/filter-css-transform-resolution.html
index 0ed55c22a4385ab15fc79af389b3d7b4addd3985..d7ab1e370546ac0576169b1469716b8229f81c1f 100644
--- a/LayoutTests/svg/custom/filter-css-transform-resolution.html
+++ b/LayoutTests/svg/custom/filter-css-transform-resolution.html
@@ -4,13 +4,13 @@
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
- document.getElementById('div').style.webkitTransform = '';
+ document.getElementById('div').style.transform = '';
}
</script>
</head>
<body onload="forceStyleRecalc();repaintTest();">
<!-- Test for http://crbug.com/345441 - the circle edge should not be blurry -->
- <div id="div" style="-webkit-transform: rotate3d(1, 0, 0, 85deg); -webkit-transform-origin: 100px 100px 0px;">
+ <div id="div" style="transform: rotate3d(1, 0, 0, 85deg); -webkit-transform-origin: 100px 100px 0px;">
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter x="0" y="0" width="100%" height="100%" id="filter">

Powered by Google App Engine
This is Rietveld 408576698