From 424e6a3372dc551f09283a07dc29b4708d630c41 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Fri, 17 Mar 2017 06:47:32 +0100 Subject: [PATCH] Move Serializable annotation to the correct interface --- source | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source b/source index 857c7caa969..c475b403263 100644 --- a/source +++ b/source @@ -60147,7 +60147,7 @@ interface CanvasDrawImage { void drawImage(CanvasImageSource image, unrestricted double sx, unrestricted double sy, unrestricted double sw, unrestricted double sh, unrestricted double dx, unrestricted double dy, unrestricted double dw, unrestricted double dh); }; -[NoInterfaceObject, Exposed=(Window,Worker), Serializable] +[NoInterfaceObject, Exposed=(Window,Worker)] interface CanvasImageData { // pixel manipulation ImageData createImageData(double sw, double sh); @@ -60233,7 +60233,8 @@ interface TextMetrics { [Constructor(unsigned long sw, unsigned long sh), Constructor(Uint8ClampedArray data, unsigned long sw, optional unsigned long sh), - Exposed=(Window,Worker)] + Exposed=(Window,Worker), + Serializable] interface ImageData { readonly attribute unsigned long width; readonly attribute unsigned long height;