Skip to content

Commit

Permalink
Fix a markup error (multiple <dfn>s)
Browse files Browse the repository at this point in the history
The following commit introduced a markup error that prevented building:
whatwg@a4b9eef
  • Loading branch information
zcorpan committed Feb 12, 2016
1 parent a4b9eef commit 5c3e4ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -59977,8 +59977,8 @@ enum <dfn>CanvasDirection</dfn> { "<span data-x="dom-context-2d-direction-ltr">l
interface <dfn>CanvasPathDrawingStyles</dfn> {
// line caps/joins
attribute unrestricted double <span data-x="dom-context-2d-lineWidth">lineWidth</span>; // (default 1)
attribute <dfn>CanvasLineCap</dfn> <span data-x="dom-context-2d-lineCap">lineCap</span>; // (default "butt")
attribute <dfn>CanvasLineJoin</dfn> <span data-x="dom-context-2d-lineJoin">lineJoin</span>; // (default "miter")
attribute <span>CanvasLineCap</span> <span data-x="dom-context-2d-lineCap">lineCap</span>; // (default "butt")
attribute <span>CanvasLineJoin</span> <span data-x="dom-context-2d-lineJoin">lineJoin</span>; // (default "miter")
attribute unrestricted double <span data-x="dom-context-2d-miterLimit">miterLimit</span>; // (default 10)

// dashed lines
Expand All @@ -59991,9 +59991,9 @@ interface <dfn>CanvasPathDrawingStyles</dfn> {
interface <dfn>CanvasTextDrawingStyles</dfn> {
// text
attribute DOMString <span data-x="dom-context-2d-font">font</span>; // (default 10px sans-serif)
attribute <dfn>CanvasTextAlign</dfn> <span data-x="dom-context-2d-textAlign">textAlign</span>; // (default: "start")
attribute <dfn>CanvasTextBaseline</dfn> <span data-x="dom-context-2d-textBaseline">textBaseline</span>; // (default: "alphabetic")
attribute <dfn>CanvasDirection</dfn> <span data-x="dom-context-2d-direction">direction</span>; // (default: "inherit")
attribute <span>CanvasTextAlign</span> <span data-x="dom-context-2d-textAlign">textAlign</span>; // (default: "start")
attribute <span>CanvasTextBaseline</span> <span data-x="dom-context-2d-textBaseline">textBaseline</span>; // (default: "alphabetic")
attribute <span>CanvasDirection</span> <span data-x="dom-context-2d-direction">direction</span>; // (default: "inherit")
};

[NoInterfaceObject, Exposed=(Window,Worker)]
Expand Down

0 comments on commit 5c3e4ab

Please sign in to comment.