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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html

Issue 2529253002: 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/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html b/third_party/WebKit/LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html
index ad6490a756f3c7add2bdf5b65b90856a4821ac0d..5db702260b4275ffe7db30590b04cc6a021939da 100644
--- a/third_party/WebKit/LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html
+++ b/third_party/WebKit/LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html
@@ -32,11 +32,11 @@
height: 100px;
}
.compositor-painted-shadow {
- -webkit-filter: grayscale(0.5) drop-shadow(-50px -50px 0px gray);
+ filter: grayscale(0.5) drop-shadow(-50px -50px 0px gray);
}
.software-painted-shadow {
/* Safari paints filters in software when drop-shadow is not the last filter in the chain. */
- -webkit-filter: drop-shadow(-50px -50px 0px gray) grayscale(0.5);
+ filter: drop-shadow(-50px -50px 0px gray) grayscale(0.5);
}
</style>
<script>

Powered by Google App Engine
This is Rietveld 408576698