Index: bindings/tests/idls/core/TestInterface.idl |
diff --git a/bindings/tests/idls/TestInterface.idl b/bindings/tests/idls/core/TestInterface.idl |
similarity index 95% |
copy from bindings/tests/idls/TestInterface.idl |
copy to bindings/tests/idls/core/TestInterface.idl |
index 7dfed9a9bb6e7461c5dcd94526a15c383c402969..135c6f8536fa1e88b00d5409a253f8132fcb9577 100644 |
--- a/bindings/tests/idls/TestInterface.idl |
+++ b/bindings/tests/idls/core/TestInterface.idl |
@@ -34,12 +34,13 @@ |
[ |
ActiveDOMObject, |
Conditional=CONDITION, |
- Custom=LegacyCallAsFunction|ToV8, |
+ Custom=(LegacyCallAsFunction,ToV8), |
DoNotCheckConstants, |
ImplementedAs=TestInterfaceImplementation, |
+ Iterable, |
RuntimeEnabled=FeatureName, |
SetWrapperReferenceTo(TestInterface referencedName), |
- TypeChecking=Interface|Unrestricted, |
+ TypeChecking=(Interface,Unrestricted), |
Exposed=(Worker,Window), |
] interface TestInterface : TestInterfaceEmpty { |
// members needed to test [ImplementedAs], as this affect attribute |
@@ -87,6 +88,9 @@ |
[Exposed=Window] attribute long windowExposedAttribute; |
[Exposed=(Window,ServiceWorker)] void windowAndServiceWorkerExposedMethod(); |
+ |
+ void voidMethodPartailOverload(); |
+ static void voidMethodPartailOverload(); |
}; |
TestInterface implements TestImplements; |