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

Side by Side Diff: LayoutTests/fast/transforms/transform-svg.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <html xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 padding: 0px; 5 padding: 0px;
6 margin: 0px; 6 margin: 0px;
7 } 7 }
8 8
9 #svgRoot { 9 #svgRoot {
10 padding: 0px; 10 padding: 0px;
11 margin: 0px; 11 margin: 0px;
12 -webkit-transform: translate(50%, 50%); 12 transform: translate(50%, 50%);
13 } 13 }
14 </style> 14 </style>
15 </head> 15 </head>
16 16
17 <body> 17 <body>
18 <!--This test verifies that transformed SVG elements are positioned properly .--> 18 <!--This test verifies that transformed SVG elements are positioned properly .-->
19 <svg id="svgRoot" width="400px" height="400px" viewBox="0 0 400 400" xmlns=" http://www.w3.org/2000/svg"> 19 <svg id="svgRoot" width="400px" height="400px" viewBox="0 0 400 400" xmlns=" http://www.w3.org/2000/svg">
20 <circle id="circle" cx="100" cy="100" r="10"/> 20 <circle id="circle" cx="100" cy="100" r="10"/>
21 </svg> 21 </svg>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/transforms/transform-positioned-ancestor.html ('k') | LayoutTests/fast/transforms/transform-table-row.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698