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
