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

Side by Side Diff: LayoutTests/transitions/svg-transitions.html

Issue 234453002: Remove SVG1.1 kerning property (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More TestExpectations updates Created 6 years, 8 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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 4
5 svg * { 5 svg * {
6 -webkit-transition-property: fill, stroke, fill-opacity, stroke-opacity, s troke-width, stroke-dasharray, stroke-dashoffset, stroke-miterlimit, kerning, ba seline-shift, flood-color, flood-opacity, stop-color, stop-opacity, lighting-col or; 6 -webkit-transition-property: fill, stroke, fill-opacity, stroke-opacity, s troke-width, stroke-dasharray, stroke-dashoffset, stroke-miterlimit, kerning, ba seline-shift, flood-color, flood-opacity, stop-color, stop-opacity, lighting-col or;
7 -webkit-transition-duration: 2s; 7 -webkit-transition-duration: 2s;
8 -webkit-transition-timing-function: linear; 8 -webkit-transition-timing-function: linear;
9 } 9 }
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 [1, "rect4", "stroke-width", 8, 1], // 1px to 4mm 141 [1, "rect4", "stroke-width", 8, 1], // 1px to 4mm
142 [1, "rect5", "stroke-width", 5, 1], // 0 to 10px 142 [1, "rect5", "stroke-width", 5, 1], // 0 to 10px
143 [1, "rect5", "stroke-dasharray", [10, 10], 1], // (0, 0) -> (20, 20) 143 [1, "rect5", "stroke-dasharray", [10, 10], 1], // (0, 0) -> (20, 20)
144 [1, "rect6", "stroke-width", 15, 2], // 10% to 20% 144 [1, "rect6", "stroke-width", 15, 2], // 10% to 20%
145 [1, "rect6", "stroke-dasharray", [15, 15, 20, 12.5, 17.5, 17.5], 1], // (10, 1 5, 20, 15, 20, 15) -> (10, 15, 20, 10, 15, 20) 145 [1, "rect6", "stroke-dasharray", [15, 15, 20, 12.5, 17.5, 17.5], 1], // (10, 1 5, 20, 15, 20, 15) -> (10, 15, 20, 10, 15, 20)
146 [1, "rect7", "fill", [0, 0, 127], 20], // url(#invalid) black -> url(#invalid ) blue 146 [1, "rect7", "fill", [0, 0, 127], 20], // url(#invalid) black -> url(#invalid ) blue
147 [1, "rect7", "stroke-dasharray", [10, 10], 1], // (20, 20) -> (0, 0) 147 [1, "rect7", "stroke-dasharray", [10, 10], 1], // (20, 20) -> (0, 0)
148 [1, "stop1", "stop-color", [127, 127, 0], 20], // rgb(255,0,0) -> rgb(0, 255, 0) 148 [1, "stop1", "stop-color", [127, 127, 0], 20], // rgb(255,0,0) -> rgb(0, 255, 0)
149 [1, "stop1", "stop-opacity", 0.75, 0.1], // 1 -> 0.5 149 [1, "stop1", "stop-opacity", 0.75, 0.1], // 1 -> 0.5
150 [1, "polyline1", "stroke-miterlimit", 11, 0.5], // 12 -> 10 (this is an abrupt change in rendering even though the property animation is smooth) 150 [1, "polyline1", "stroke-miterlimit", 11, 0.5], // 12 -> 10 (this is an abrupt change in rendering even though the property animation is smooth)
151 [1, "text1", "kerning", 5, 1], // 0 -> 10px
152 [1, "text1", "baseline-shift", 5, 1], // 0 -> 10px 151 [1, "text1", "baseline-shift", 5, 1], // 0 -> 10px
153 [1, "flood1", "flood-opacity", 0.5, 0.1], // 1 -> 0 152 [1, "flood1", "flood-opacity", 0.5, 0.1], // 1 -> 0
154 [1, "flood1", "flood-color", [127, 127, 0], 20], // rgb(0, 255, 0) -> rgb(255, 0, 0) 153 [1, "flood1", "flood-color", [127, 127, 0], 20], // rgb(0, 255, 0) -> rgb(255, 0, 0)
155 [1, "light1", "lighting-color", [127, 127, 0], 20], // rgb(255, 0, 0) -> rgb(0 , 255, 0) 154 [1, "light1", "lighting-color", [127, 127, 0], 20], // rgb(255, 0, 0) -> rgb(0 , 255, 0)
156 ]; 155 ];
157 156
158 function setupTest() 157 function setupTest()
159 { 158 {
160 document.getElementById('container').className = 'animating'; 159 document.getElementById('container').className = 'animating';
161 } 160 }
(...skipping 30 matching lines...) Expand all
192 <rect id="rect7" x="130" y="100" width="10" height="10"/> 191 <rect id="rect7" x="130" y="100" width="10" height="10"/>
193 <polyline id="polyline1" points="10,70 60,75 10,80"/> 192 <polyline id="polyline1" points="10,70 60,75 10,80"/>
194 <text id="text1" x="100" y="60">Example</text> 193 <text id="text1" x="100" y="60">Example</text>
195 </svg> 194 </svg>
196 </div> 195 </div>
197 196
198 <div id="result"></div> 197 <div id="result"></div>
199 198
200 </body> 199 </body>
201 </html> 200 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698