From 5c3e4ab770c719ff55b439f314817b83f5a8cc96 Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Fri, 12 Feb 2016 14:31:14 +0100 Subject: [PATCH] Fix a markup error (multiple s) The following commit introduced a markup error that prevented building: https://github.com/whatwg/html/commit/a4b9eef6ff40c394cf6ec9247ce6286795348f3f --- source | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source b/source index 06788413657..02ea9a4dc3a 100644 --- a/source +++ b/source @@ -59977,8 +59977,8 @@ enum CanvasDirection { "l interface CanvasPathDrawingStyles { // line caps/joins attribute unrestricted double lineWidth; // (default 1) - attribute CanvasLineCap lineCap; // (default "butt") - attribute CanvasLineJoin lineJoin; // (default "miter") + attribute CanvasLineCap lineCap; // (default "butt") + attribute CanvasLineJoin lineJoin; // (default "miter") attribute unrestricted double miterLimit; // (default 10) // dashed lines @@ -59991,9 +59991,9 @@ interface CanvasPathDrawingStyles { interface CanvasTextDrawingStyles { // text attribute DOMString font; // (default 10px sans-serif) - attribute CanvasTextAlign textAlign; // (default: "start") - attribute CanvasTextBaseline textBaseline; // (default: "alphabetic") - attribute CanvasDirection direction; // (default: "inherit") + attribute CanvasTextAlign textAlign; // (default: "start") + attribute CanvasTextBaseline textBaseline; // (default: "alphabetic") + attribute CanvasDirection direction; // (default: "inherit") }; [NoInterfaceObject, Exposed=(Window,Worker)]