dontcallmedom / webidl-checker

This is the source code for the W3C on-line WebIDL checker, a tool verify the correctness of WebIDL fragments embedded in HTML documents.
4 stars 2 forks source link

`inherit attribute` gives an error #10

Closed zcorpan closed 10 years ago

zcorpan commented 10 years ago

interface Ancestor { readonly attribute TheType theIdentifier; };

interface Derived : Ancestor { inherit attribute TheType theIdentifier; };

This should be valid but the checker gives an error.