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

Unified Diff: third_party/WebKit/LayoutTests/svg/parser/svg-path-error-reporting.html

Issue 1642463004: Extended error reporting for SVG path parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "path flag" -> "arc flag" Created 4 years, 11 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
Index: third_party/WebKit/LayoutTests/svg/parser/svg-path-error-reporting.html
diff --git a/third_party/WebKit/LayoutTests/svg/parser/svg-path-error-reporting.html b/third_party/WebKit/LayoutTests/svg/parser/svg-path-error-reporting.html
new file mode 100644
index 0000000000000000000000000000000000000000..16cc50b8503987a2c6afed0cf9165e82987977d3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/parser/svg-path-error-reporting.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<svg>
+ <path d=" 10,10 L 20,20 30 40 50 60 70 80"/>
+ <path d="M 10,10 C 20,20 30 40 fiftyfive twentyseven z"/>
+ <path d="M 10,10 A 20,20 0 large,yes 40 50"/>
+ <path d="M 10,10 E 20,20 z"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698