Re: [webidl] DOMException function definition makes no sense (#55)

FWIW: in Edge (and IE since IE9) this has been implemented as an interface:

```webidl
interface DOMException
    {
        const unsigned short INDEX_SIZE_ERR = 1;
        // [snip]

        readonly attribute unsigned short code;
        stringifier readonly attribute DOMString message;
        readonly attribute DOMString name;
    };
```


---
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/55#issuecomment-119680327

Received on Wednesday, 8 July 2015 18:06:20 UTC