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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/clip-path-crash.html

Issue 2513413007: CSS Animations: 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/fast/css/clip-path-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/clip-path-crash.html b/third_party/WebKit/LayoutTests/fast/css/clip-path-crash.html
index 5a4f689ac47081f469022f11605151f41c0672c6..45c65773a2f9b48276883141c149e7f2de4d96cc 100644
--- a/third_party/WebKit/LayoutTests/fast/css/clip-path-crash.html
+++ b/third_party/WebKit/LayoutTests/fast/css/clip-path-crash.html
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<style>
.box {
- -webkit-animation: inset-anim 2s linear
+ animation: inset-anim 2s linear
}
-@-webkit-keyframes inset-anim {
-from { -webkit-clip-path: inset(0); }
-to { -webkit-clip-path: inset(20%);</style>
+@keyframes inset-anim {
+from { clip-path: inset(0); }
+to { clip-path: inset(20%);</style>
</style>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<script>

Powered by Google App Engine
This is Rietveld 408576698