This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
We should make either: [Global] interface G { }; interface A { }; [Exposed=G] G implements A; or: [Global] interface G { }; [Exposed=G] interface A { }; G implements A; do the same as: [Global] interface G { }; [Exposed=G] partial interface G { ... members of A... };
Fixed in https://github.com/heycam/webidl/commit/45e8173.