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

Side by Side Diff: LayoutTests/animations/svg-attribute-interpolation/svg-startOffset-interpolation.html

Issue 1212753002: Convert tests (except fast/, imported/) using ahem font to ahem.js style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/ahem.js"></script>
4 <style> 5 <style>
5 :root { 6 :root {
6 font: 50px Ahem; 7 font: 50px Ahem;
7 } 8 }
8 </style> 9 </style>
9 </head> 10 </head>
10 <body> 11 <body>
11 <svg> 12 <svg>
12 <defs> 13 <defs>
13 <path id="path1" d="m 0 0 h 250 v 250 h -250 z"/> 14 <path id="path1" d="m 0 0 h 250 v 250 h -250 z"/>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 property: 'startOffset', 66 property: 'startOffset',
66 from: '125', 67 from: '125',
67 to: '25ex' 68 to: '25ex'
68 }, [ 69 }, [
69 {at: 0, is: '125'}, 70 {at: 0, is: '125'},
70 {at: 1, is: '25ex'}, 71 {at: 1, is: '25ex'},
71 ]); 72 ]);
72 </script> 73 </script>
73 </body> 74 </body>
74 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698