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

Unified Diff: Source/core/html/canvas/Path.idl

Issue 170503002: Implement addPath() method for Path object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: Source/core/html/canvas/Path.idl
diff --git a/Source/core/html/canvas/Path.idl b/Source/core/html/canvas/Path.idl
index 66435a5da4609f265949c4ba995ddb95cf8bbb69..b2aa1f4d83738b3a35fbedcb48d67b6b51d346bf 100644
--- a/Source/core/html/canvas/Path.idl
+++ b/Source/core/html/canvas/Path.idl
@@ -34,6 +34,8 @@
ImplementedAs=DOMPath
] interface Path {
+ void addPath(Path path, SVGMatrix? transform);
+
// FIXME: These methods should be shared with CanvasRenderingContext2D in the CanvasPathMethods interface.
void closePath();
void moveTo([Default=Undefined] optional float x,

Powered by Google App Engine
This is Rietveld 408576698