NEW217556
Stroking text with a gradient and a shadow fills the shadow
https://bugs.webkit.org/show_bug.cgi?id=217556
Summary Stroking text with a gradient and a shadow fills the shadow
Myles C. Maxfield
Reported 2020-10-09 23:07:33 PDT
let context = canvas.getContext("2d"); context.font = "192px 'Times'"; context.lineWidth = 2; let gradient = context.createLinearGradient(200, 200, 400, 200); gradient.addColorStop(0, "rgb(255, 0, 128)"); gradient.addColorStop(1, "rgb(255, 153, 51)"); context.strokeStyle = gradient; context.shadowColor = "red"; context.shadowOffsetX = 10; context.shadowOffsetY = 10; context.strokeText("Hello", 200, 200); Our rendering doesn't match the other browsers.
Attachments
Radar WebKit Bug Importer
Comment 1 2020-10-16 23:08:18 PDT
Note You need to log in before you can comment on or make changes to this bug.