mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-02 22:30:58 +00:00
7 lines
279 B
Text
7 lines
279 B
Text
|
|
// https://html.spec.whatwg.org/multipage/canvas.html#canvasimagesmoothing
|
||
|
|
interface mixin CanvasImageSmoothing {
|
||
|
|
// image smoothing
|
||
|
|
attribute boolean imageSmoothingEnabled; // (default true)
|
||
|
|
attribute ImageSmoothingQuality imageSmoothingQuality; // (default low)
|
||
|
|
};
|