- From: Dominique Hazael-Massieux <dom@hazael-massieux.fr>
- Date: Wed, 18 Sep 2013 10:52:50 +0200
- To: public-webapps@w3.org
Hi,
While parsing en-masse some of the IDLs in JavaScript APIs out there, I
stumbled upon an incorrect IDL in
http://dev.w3.org/2006/webapi/clipops/clipops.html#dictionary-clipboardeventinit-members
Dictionary members are not declared with the "attribute" keyword.
So
dictionary ClipboardEventInit : EventInit {
attribute DOMString data;
attribute DOMString dataType;
};
should read instead
dictionary ClipboardEventInit : EventInit {
DOMString data;
DOMString dataType;
};
HTH,
Dom
Received on Wednesday, 18 September 2013 08:53:32 UTC