Web IDL (Second Edition)
interface Paint { }; interface SolidColor : Paint { attribute double red; attribute double green; attribute double blue; }; interface Pattern : Paint { attribute DOMString imageURL; }; [Constructor] interface GraphicalWindow { readonly attribute unsigned ...