Hi, The specification has the following IDL: interface IDBRequest : EventTarget { // … readonly attribute enum readyState; // … }; However, "enum" is not a type. The correct syntax would be something like enum IDBReadyState { "pending", "done" }; interface IDBRequest : EventTarget { // … readonly attribute IDBReadyState readyState; // … }; HTH Ms2gerReceived on Monday, 21 January 2013 14:31:59 GMT
This archive was generated by hypermail 2.3.1 : Tuesday, 26 March 2013 18:49:57 GMT