mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
Change bindings generation to make Exposed annotation aware of members/partial interfaces
This commit is contained in:
@@ -556,6 +556,19 @@ interface TestBinding {
|
||||
|
||||
GlobalScope entryGlobal();
|
||||
GlobalScope incumbentGlobal();
|
||||
|
||||
[Exposed=(Window)]
|
||||
readonly attribute boolean semiExposedBoolFromInterface;
|
||||
};
|
||||
|
||||
[Exposed=(Window)]
|
||||
partial interface TestBinding {
|
||||
readonly attribute boolean boolFromSemiExposedPartialInterface;
|
||||
};
|
||||
|
||||
partial interface TestBinding {
|
||||
[Exposed=(Window)]
|
||||
readonly attribute boolean semiExposedBoolFromPartialInterface;
|
||||
};
|
||||
|
||||
callback SimpleCallback = void(any value);
|
||||
|
||||
Reference in New Issue
Block a user