[heycam/webidl] What is the expected interaction of [SecureContext] with mixins? (#118)

Consider this IDL:

    [SecureContext]
    interface A {};
    [NoInterfaceObject]
    interface B {
      void foo();
    }
    A implements B;

Is the `foo` method available on `A` objects in non-secure contexts?  Per the current spec text, I'm pretty sure it is, right?  That's probably OK, but may be worth an example in the spec.

@mikewest 

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/118

Received on Tuesday, 10 May 2016 16:59:01 UTC