OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <body> | |
4 <div id="goal-line1">Whitespace around the arguments of the translate function should be ignored</div> | |
5 <div id="goal-line2">Only a green rect should be visible</div> | |
6 | |
7 <svg id="mysvg" xmlns="http://www.w3.org/2000/svg"> | |
8 <rect id="myRect" x="150" y="150" width="100" height="100" fill="red"/> | |
9 <rect id="myRect" x="50" y="50" width="100" height="100" fill="green" | |
10 transform="translate( 100 , 100 )"/> | |
11 </svg> | |
12 </body> | |
13 </html> | |
OLD | NEW |