pass linear-gradient2 test for undefined case

This commit is contained in:
TreehouseNorris 2022-12-08 12:08:47 -05:00
parent 0a671a48a2
commit 13f75e8fb0
1 changed files with 2 additions and 2 deletions

View File

@ -603,7 +603,7 @@ export class CanvasRenderer extends Renderer {
]);
const pattern = this.ctx.createPattern(
this.resizeImage(image, width, height),
repeatTypes[+container.styles.backgroundRepeat]
repeatTypes[+container.styles.backgroundRepeat || 0]
) as CanvasPattern;
this.renderRepeat(path, pattern, x, y);
}
@ -626,7 +626,7 @@ export class CanvasRenderer extends Renderer {
if (width > 0 && height > 0) {
const pattern = this.ctx.createPattern(
canvas,
repeatTypes[+container.styles.backgroundRepeat]
repeatTypes[+container.styles.backgroundRepeat || 0]
) as CanvasPattern;
this.renderRepeat(path, pattern, x, y);
}