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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 path { 3 path {
4 -webkit-animation: inset-anim 2s linear; 4 animation: inset-anim 2s linear;
5 } 5 }
6 @-webkit-keyframes inset-anim { 6 @keyframes inset-anim {
7 from { -webkit-clip-path: inset(10%); } 7 from { clip-path: inset(10%); }
8 to { -webkit-clip-path: inset(20%); } 8 to { clip-path: inset(20%); }
9 } 9 }
10 </style> 10 </style>
11 <script src="../resources/text-based-repaint.js"></script> 11 <script src="../resources/text-based-repaint.js"></script>
12 <script> 12 <script>
13 outputRepaintRects = false; 13 outputRepaintRects = false;
14 onload = runRepaintTest; 14 onload = runRepaintTest;
15 function repaintTest() { 15 function repaintTest() {
16 }; 16 };
17 </script> 17 </script>
18 Test for crbug.com/448227: This test passes if it does not crash. 18 Test for crbug.com/448227: This test passes if it does not crash.
19 <svg> 19 <svg>
20 <path d="M0 0"/> 20 <path d="M0 0"/>
21 </svg> 21 </svg>
22 22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698