Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #655 - Allow createPattern to return null #677

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 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 Expand Up @@ -116679,6 +116679,7 @@ INSERT INTERFACES HERE
Michael Dyck,
Michael Enright,
Michael Gratton,
Michael Kohler,
Michael Nordman,
Michael Powers,
Michael Rakowski,
Expand Down