These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
6 lines
279 B
Text
6 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)
|
|
};
|