Skip to content

Commit

Permalink
Fix #655 - Allow createPattern to return null
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Feb 11, 2016
1 parent 2a1374f commit c48ef42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source
Original file line number Diff line number Diff line change
Expand Up @@ -59921,7 +59921,7 @@ interface <dfn>CanvasFillStrokeStyles</dfn> {
attribute (DOMString or CanvasGradient or CanvasPattern) <span data-x="dom-context-2d-fillStyle">fillStyle</span>; // (default black)
<span>CanvasGradient</span> <span data-x="dom-context-2d-createLinearGradient">createLinearGradient</span>(double x0, double y0, double x1, double y1);
<span>CanvasGradient</span> <span data-x="dom-context-2d-createRadialGradient">createRadialGradient</span>(double x0, double y0, double r0, double x1, double y1, double r1);
<span>CanvasPattern</span> <span data-x="dom-context-2d-createPattern">createPattern</span>(<span>CanvasImageSource</span> image, [TreatNullAs=EmptyString] DOMString repetition);
<span>CanvasPattern?</span> <span data-x="dom-context-2d-createPattern">createPattern</span>(<span>CanvasImageSource</span> image, [TreatNullAs=EmptyString] DOMString repetition);
<!--
// v8 we received one request from Ralf Richard G&oml;bel for a new kind of pattern: a hatch.
// basically it would be a series of dash styles, angles, line widths, and offsets
Expand Down

0 comments on commit c48ef42

Please sign in to comment.