{
const context = DOM.context2d(width, height);
context.translate(0.5, 0.5);
context.beginPath();
for (let y = 1; y < 1000; y += 100) {
context.moveTo(100, 100);
context.lineTo(500, y);
}
context.stroke();
for (let x = 1; x < 1000; x += 100) {
context.moveTo(100, x);
context.lineTo(500, 500);
}
context.stroke();
return context.canvas;
}