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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/regions-expanding.html

Issue 2531163002: CSS Filters: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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/LayoutTests/css3/filters/regions-expanding.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/regions-expanding.html b/third_party/WebKit/LayoutTests/css3/filters/regions-expanding.html
index 85b116189063f7abdfa7fd03ca2666ee336d4936..9fe2ecafff197f6465c315c3bc95b42f65a5c81e 100644
--- a/third_party/WebKit/LayoutTests/css3/filters/regions-expanding.html
+++ b/third_party/WebKit/LayoutTests/css3/filters/regions-expanding.html
@@ -1,6 +1,6 @@
<!-- blur (expands) then sepia (shouldn't clamp) -->
-<img style="-webkit-filter: blur(2px) sepia()" src="resources/reference.png">
+<img style="filter: blur(2px) sepia()" src="resources/reference.png">
<!-- blur (expands) then another blur (shouldn't clamp) -->
-<img style="-webkit-filter: blur(3px) blur(3px)" src="resources/reference.png">
+<img style="filter: blur(3px) blur(3px)" src="resources/reference.png">
<!-- blur (expands) then grayscale then another blur (shouldn't clamp) -->
-<img style="-webkit-filter: blur(3px) grayscale() blur(3px)" src="resources/reference.png">
+<img style="filter: blur(3px) grayscale() blur(3px)" src="resources/reference.png">

Powered by Google App Engine
This is Rietveld 408576698