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

Side by Side Diff: third_party/WebKit/LayoutTests/canvas/resources/green-flash-at-50ms.svg

Issue 1493883002: Add layout test canvas/synchronous-create-pattern.html back (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better testing Created 5 years 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/canvas/synchronous-create-pattern.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"> 1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
2 <defs> 2 <defs>
3 <style type="text/css"><![CDATA[ 3 <style type="text/css"><![CDATA[
4 #square { 4 #square {
5 fill: red; 5 fill: red;
6 -webkit-animation: keyframes 0.01s; 6 -webkit-animation: keyframes 0.05s;
7 -webkit-animation-fill-mode: forwards; 7 -webkit-animation-fill-mode: forwards;
8 -webkit-animation-timing-function: step-end; 8 -webkit-animation-timing-function: step-end;
9 } 9 }
10 @-webkit-keyframes keyframes { 10 @-webkit-keyframes keyframes {
11 0% { fill: pink } 11 0% { fill: blue }
12 /* To prevent flakiness, rapidly switch to green */ 12 99% { fill: blue }
13 1% { fill: green }
14 100% { fill: green } 13 100% { fill: green }
15 } 14 }
16 ]]></style> 15 ]]></style>
17 </defs> 16 </defs>
18 <rect id="square" width="5" height="5" x="5" y="5"></rect> 17 <rect id="square" width="100" height="100" x="0" y="0"></rect>
19 </svg> 18 </svg>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/canvas/synchronous-create-pattern.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698