diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-14 11:46:21 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-23 02:12:38 +0100 |
commit | 6478daf2988b56ae73f941fd471242b7e92b2a4e (patch) | |
tree | a572c976e75590a8e5a6748ae40a56f7efdcf89d /dom/html/HTMLCanvasElement.h | |
parent | 181cb5210e6555102f5215316ea7a9b1771b0717 (diff) | |
download | UXP-6478daf2988b56ae73f941fd471242b7e92b2a4e.tar UXP-6478daf2988b56ae73f941fd471242b7e92b2a4e.tar.gz UXP-6478daf2988b56ae73f941fd471242b7e92b2a4e.tar.lz UXP-6478daf2988b56ae73f941fd471242b7e92b2a4e.tar.xz UXP-6478daf2988b56ae73f941fd471242b7e92b2a4e.zip |
Implement origin-clean algorithm for ImageBitmap.
This resolves #973.
Diffstat (limited to 'dom/html/HTMLCanvasElement.h')
-rw-r--r-- | dom/html/HTMLCanvasElement.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/html/HTMLCanvasElement.h b/dom/html/HTMLCanvasElement.h index 746fab198..e77db6ff1 100644 --- a/dom/html/HTMLCanvasElement.h +++ b/dom/html/HTMLCanvasElement.h @@ -224,9 +224,9 @@ public: nsIntSize GetSize(); /** - * Determine whether the canvas is write-only. + * Determine whether the canvas is write-only (tainted). */ - bool IsWriteOnly(); + bool IsWriteOnly() const; /** * Force the canvas to be write-only. |