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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-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/paint/invalidation/svg/invalid-clip-path-crash.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html b/third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html
index a962d277dc07c03e7ad9d6ebd020e60464233a22..06f7bb0608dc434a509c023115bffaf205b78999 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<style>
path {
- -webkit-animation: inset-anim 2s linear;
+ animation: inset-anim 2s linear;
}
- @-webkit-keyframes inset-anim {
- from { -webkit-clip-path: inset(10%); }
- to { -webkit-clip-path: inset(20%); }
+ @keyframes inset-anim {
+ from { clip-path: inset(10%); }
+ to { clip-path: inset(20%); }
}
</style>
<script src="../resources/text-based-repaint.js"></script>

Powered by Google App Engine
This is Rietveld 408576698