Chromium Code Reviews| Index: LayoutTests/svg/parser/svg-parser-argument-whitespace.html |
| diff --git a/LayoutTests/svg/parser/svg-parser-argument-whitespace.html b/LayoutTests/svg/parser/svg-parser-argument-whitespace.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..607bf0ee540e890278e1b4c21ed1db1aa3b9771b |
| --- /dev/null |
| +++ b/LayoutTests/svg/parser/svg-parser-argument-whitespace.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + |
| +<body> |
| + |
|
rwlbuis
2014/02/24 22:55:41
The does not need to be an empty line here.
ostap
2014/02/24 23:28:18
Done.
|
| + <div id="goal-line1">Whitespace around the arguments of the translate function should be ignored</div> |
| + <div id="goal-line2">Only a green rect should be visible</div> |
| + |
| + <svg id="mysvg" xmlns="http://www.w3.org/2000/svg"> |
| + <rect id="myRect" x="150" y="150" width="100" height="100" fill="red"/> |
| + <rect id="myRect" x="50" y="50" width="100" height="100" fill="green" |
|
rwlbuis
2014/02/24 22:55:41
Indenting seems wrong here. It is better to avoid
ostap
2014/02/24 23:28:18
Done.
|
| + transform="translate( 100 , 100 )"/> |
| + </svg> |
| + |
|
rwlbuis
2014/02/24 22:55:41
Ditto.
ostap
2014/02/24 23:28:18
Done.
|
| +</body> |
| +</html> |