[Bug 25495] Behavior of no [Exposed] on interface members is weird

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25495

--- Comment #4 from Boris Zbarsky <bzbarsky@mit.edu> ---
Also, it probably makes no sense to support this:

  [Exposed=Worker]
  interface Foo {
    [Exposed=Window]
    void method();
  };

in that the [Exposed] on interface members should be a subset of the [Exposed]
of the interface itself, I believe.  Similarly for:

  [Exposed=Worker]
  interface Foo {};

  [Exposed=Window]
  partial interface Foo {
    void method();
  };

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 25 July 2014 20:05:15 UTC