mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
dom: Convert parent dictionary values when converting dictionaries to JS.
This commit is contained in:
parent
a34d1573b6
commit
edf86d1bdc
7 changed files with 57 additions and 4 deletions
|
@ -45,6 +45,14 @@ dictionary TestDictionary {
|
|||
DOMString? nonRequiredNullable2;
|
||||
};
|
||||
|
||||
dictionary TestDictionaryParent {
|
||||
DOMString parentStringMember;
|
||||
};
|
||||
|
||||
dictionary TestDictionaryWithParent : TestDictionaryParent {
|
||||
DOMString stringMember;
|
||||
};
|
||||
|
||||
dictionary TestDictionaryDefaults {
|
||||
boolean booleanValue = false;
|
||||
byte byteValue = 7;
|
||||
|
@ -571,6 +579,8 @@ interface TestBinding {
|
|||
|
||||
[Exposed=(Window)]
|
||||
readonly attribute boolean semiExposedBoolFromInterface;
|
||||
|
||||
TestDictionaryWithParent getDictionaryWithParent(DOMString parent, DOMString child);
|
||||
};
|
||||
|
||||
[Exposed=(Window)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue