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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/resources/circle.svg

Issue 2723093004: Adds SVGImageElement as a CanvasImageSource (Closed)
Patch Set: Refactored, added tests Created 3 years, 9 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/fast/canvas/resources/circle.svg
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/resources/circle.svg b/third_party/WebKit/LayoutTests/fast/canvas/resources/circle.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ea2817f4281448ccfdce739287dff21664cd0c39
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/resources/circle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0"?>
fs 2017/03/07 22:01:24 You can drop the XML decl (this line) and the doct
fserb 2017/03/21 19:15:22 done.
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+ <circle cx="50%" cy="50%" r="50%" style="fill:blue;" />
+</svg>

Powered by Google App Engine
This is Rietveld 408576698