Index: Source/bindings/tests/idls/TestObject.idl |
diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl |
index 920966c09f853f6764599f4a6bb14b08c16672bd..9b4bd7dd98b52d5cf26fbed6dae14b64ded5396e 100644 |
--- a/Source/bindings/tests/idls/TestObject.idl |
+++ b/Source/bindings/tests/idls/TestObject.idl |
@@ -481,6 +481,10 @@ interface TestObject { |
[NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); |
[RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); |
[PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeEnabledVoidMethod(); |
+ [RuntimeEnabled=FeatureName] void runtimeEnabledOverloadedVoidMethod(DOMString stringArg); |
+ [RuntimeEnabled=FeatureName] void runtimeEnabledOverloadedVoidMethod(long longArg); |
+ [RuntimeEnabled=FeatureName] void partiallyRuntimeEnabledOverloadedVoidMethod(DOMString stringArg); |
+ void partiallyRuntimeEnabledOverloadedVoidMethod(long longArg); |
Nils Barth (inactive)
2014/06/12 11:45:06
Do you want a test case with multiple feature name
Jens Widell
2014/06/12 12:04:38
Adding another partiallyRuntimeEnabledOverloadedVo
Nils Barth (inactive)
2014/06/12 12:20:27
Thanks for explanation; current tests are fine the
|
[TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStringMethod(); |
[TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUndefinedStringMethod(); |
[TypeChecking=Interface] void typeCheckingInterfaceVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg); |