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

Unified Diff: LayoutTests/svg/parser/svg-parser-argument-whitespace.html

Issue 178943002: Adding parser layout test for whitespace around comma in argument list (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated by review comments. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/svg/parser/svg-parser-argument-whitespace-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..a97af4c6264450593d45f61a11824d29d380763f
--- /dev/null
+++ b/LayoutTests/svg/parser/svg-parser-argument-whitespace.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+<body>
+ <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"
+ transform="translate( 100 , 100 )"/>
+ </svg>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/svg/parser/svg-parser-argument-whitespace-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698