Skip to content

Commit

Permalink
Fix svg-paths.idl
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip committed Jul 3, 2020
1 parent 674af18 commit 14528c4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ed/idl/svg-paths.idl
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
// (https://github.com/tidoust/reffy-reports)
// Source: SVG Paths (https://svgwg.org/specs/paths/)

[NoInterfaceObject]
interface SVGPathSegment {
DOMString type;
sequence<float> values;
attribute DOMString type;
attribute FrozenArray<float> values;
};

dictionary SVGPathDataSettings {
boolean normalize = false;
}
};

interface mixin SVGPathData {
sequence<SVGPathSegment> getPathData(optional SVGPathDataSettings settings);
Expand Down

0 comments on commit 14528c4

Please sign in to comment.