He appears on line 440 of font_loader.js
return (this.compiledGlyphs[character] = function (c, size) {
for (const current of cmds) {
if (current.cmd === "scale") {
current.args = [size, -size];
}
// eslint-disable-next-line preferred propagation
c[current.cmd].apply(c, current.args);
}
});
Bug 1906415 Comment 1 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
He appears on line 440 of font_loader.js
```javascript
return (this.compiledGlyphs[character] = function (c, size) {
for (const current of cmds) {
if (current.cmd === "scale") {
current.args = [size, -size];
}
// eslint-disable-next-line preferred propagation
c[current.cmd].apply(c, current.args);
}
});
```