|
| void | enabledAtRuntimeOperation (DOMString testParam) |
| |
| void | enabledAtRuntimeOperation (long testParam) |
| |
| void | worldSpecificMethod (long testParam) |
| |
| void | voidMethod () |
| |
| void | voidMethodWithArgs (long longArg, DOMString strArg, TestObj objArg) |
| |
| byte | byteMethod () |
| |
| byte | byteMethodWithArgs (byte byteArg, DOMString strArg, TestObj objArg) |
| |
| octet | octetMethod () |
| |
| octet | octetMethodWithArgs (octet octetArg, DOMString strArg, TestObj objArg) |
| |
| long | longMethod () |
| |
| long | longMethodWithArgs (long longArg, DOMString strArg, TestObj objArg) |
| |
| TestObj | objMethod () |
| |
| TestObj | objMethodWithArgs (long longArg, DOMString strArg, TestObj objArg) |
| |
| long | unforgeableMethod () |
| |
| void | methodWithArgTreatingNullAsEmptyString ([TreatNullAs=EmptyString] DOMString arg) |
| |
| void | methodWithXPathNSResolverParameter (XPathNSResolver resolver) |
| |
| DOMString | nullableStringMethod () |
| |
| getter DOMString | nullableStringSpecialMethod (unsigned long index) |
| |
| void | methodWithEnumArg (TestEnumType enumArg) |
| |
| void | methodWithStandaloneEnumArg (TestStandaloneEnumeration enumArg) |
| |
| void | methodWithOptionalEnumArg (optional TestEnumType enumArg) |
| |
| void | methodWithOptionalEnumArgAndDefaultValue (optional TestEnumType enumArg="EnumValue1") |
| |
| TestObj | methodThatRequiresAllArgsAndThrows (DOMString strArg, TestObj objArg) |
| |
| void | methodWithUSVStringArg (USVString str) |
| |
| void | methodWithNullableUSVStringArg (USVString? str) |
| |
| void | methodWithUSVStringArgTreatingNullAsEmptyString ([TreatNullAs=EmptyString] USVString str) |
| |
| void | methodWithByteStringArg (ByteString str) |
| |
| void | methodWithNullableByteStringArg (ByteString? str) |
| |
| void | methodWithByteStringArgTreatingNullAsEmptyString ([TreatNullAs=EmptyString] ByteString str) |
| |
| void | serializedValue (SerializedScriptValue serializedArg) |
| |
| void | methodWithRecord (record< DOMString, long > recordParameter) |
| |
| void | methodWithException () |
| |
| long | methodWithExceptionReturningLong () |
| |
| TestObj | methodWithExceptionReturningObject () |
| |
| void | customMethod () |
| |
| void | customMethodWithArgs (long longArg, DOMString strArg, TestObj objArg) |
| |
| void | jsBuiltinMethod () |
| |
| void | jsBuiltinMethodWithArgs (long longArg, DOMString strArg, TestObj objArg) |
| |
| DOMString | privateMethod (DOMString argument) |
| |
| DOMString | publicAndPrivateMethod (DOMString argument) |
| |
| void | addEventListener (DOMString type, EventListener listener, optional boolean useCapture=false) |
| |
| void | removeEventListener (DOMString type, EventListener listener, optional boolean useCapture=false) |
| |
| void | withScriptStateVoid () |
| |
| TestObj | withScriptStateObj () |
| |
| void | withScriptStateVoidException () |
| |
| TestObj | withScriptStateObjException () |
| |
| void | withScriptExecutionContext () |
| |
| void | withScriptExecutionContextAndScriptState () |
| |
| TestObj | withScriptExecutionContextAndScriptStateObjException () |
| |
| TestObj | withScriptExecutionContextAndScriptStateWithSpaces () |
| |
| void | withScriptArgumentsAndCallStack () |
| |
| void | withDocumentArgument () |
| |
| void | withCallerDocumentArgument () |
| |
| void | withCallerWindowArgument () |
| |
| void | methodWithOptionalArg (optional long opt) |
| |
| void | methodWithOptionalArgAndDefaultValue (optional long opt=666) |
| |
| void | methodWithNonOptionalArgAndOptionalArg (long nonOpt, optional long opt) |
| |
| void | methodWithNonOptionalArgAndTwoOptionalArgs (long nonOpt, optional long opt1, optional long opt2) |
| |
| void | methodWithOptionalString (optional DOMString str) |
| |
| void | methodWithOptionalUSVString (optional USVString str) |
| |
| void | methodWithOptionalAtomicString ([AtomicString] optional DOMString str) |
| |
| void | methodWithOptionalStringAndDefaultValue (optional DOMString str="foo") |
| |
| void | methodWithOptionalAtomicStringAndDefaultValue ([AtomicString] optional DOMString str="foo") |
| |
| void | methodWithOptionalStringIsNull (optional DOMString str=null) |
| |
| void | methodWithOptionalStringIsUndefined (optional DOMString str="undefined") |
| |
| void | methodWithOptionalAtomicStringIsNull ([AtomicString] optional DOMString str=null) |
| |
| void | methodWithOptionalStringIsEmptyString (optional DOMString str="") |
| |
| void | methodWithOptionalUSVStringIsEmptyString (optional USVString str="") |
| |
| void | methodWithOptionalAtomicStringIsEmptyString ([AtomicString] optional DOMString str="") |
| |
| void | methodWithOptionalDoubleIsNaN (optional unrestricted double number=NaN) |
| |
| void | methodWithOptionalFloatIsNaN (optional unrestricted float number=NaN) |
| |
| void | methodWithOptionalLongLong (optional long long number) |
| |
| void | methodWithOptionalLongLongIsZero (optional long long number=0) |
| |
| void | methodWithOptionalUnsignedLongLong (optional unsigned long long number) |
| |
| void | methodWithOptionalUnsignedLongLongIsZero (optional unsigned long long number=0) |
| |
| void | methodWithOptionalSequence (optional sequence< DOMString > array) |
| |
| void | methodWithOptionalSequenceIsEmpty (optional sequence< DOMString > array=[]) |
| |
| void | methodWithOptionalBoolean (optional boolean b) |
| |
| void | methodWithOptionalBooleanIsFalse (optional boolean b=false) |
| |
| void | methodWithOptionalAny (optional any a) |
| |
| void | methodWithOptionalObject (optional object a) |
| |
| void | methodWithOptionalNullableWrapper (optional TestObj? obj) |
| |
| void | methodWithOptionalNullableWrapperIsNull (optional TestObj? obj=null) |
| |
| void | methodWithOptionalXPathNSResolver (optional XPathNSResolver? resolver) |
| |
| void | methodWithOptionalRecord (optional record< DOMString, long >? record=null) |
| |
| void | methodWithCallbackArg (TestCallbackInterface callback) |
| |
| void | methodWithNonCallbackArgAndCallbackArg (long nonCallback, TestCallbackInterface callback) |
| |
| void | methodWithCallbackAndOptionalArg (optional TestCallbackInterface? callback) |
| |
| void | methodWithCallbackFunctionArg (TestCallbackFunction callback) |
| |
| void | methodWithNonCallbackArgAndCallbackFunctionArg (long nonCallback, TestCallbackFunction callback) |
| |
| void | methodWithCallbackFunctionAndOptionalArg (optional TestCallbackFunction? callback) |
| |
| DOMString | conditionalMethod1 () |
| |
| void | conditionalMethod2 () |
| |
| void | conditionalMethod3 () |
| |
| void | overloadedMethod (TestObj? objArg, DOMString strArg) |
| |
| void | overloadedMethod (TestObj? objArg, optional long longArg) |
| |
| void | overloadedMethod (DOMString strArg) |
| |
| void | overloadedMethod (long longArg) |
| |
| void | overloadedMethod (TestCallbackInterface callback) |
| |
| void | overloadedMethod (DOMStringList? listArg) |
| |
| void | overloadedMethod (sequence< DOMString >? arrayArg) |
| |
| void | overloadedMethod (TestObj objArg) |
| |
| void | overloadedMethod (DOMWindow window) |
| |
| void | overloadedMethod (sequence< DOMString > arrayArg) |
| |
| void | overloadedMethod (sequence< unsigned long > arrayArg) |
| |
| void | overloadedMethod (DOMString strArg) |
| |
| void | overloadedMethod (Blob... blobArgs) |
| |
| void | overloadedMethodWithOptionalParameter (DOMString strArg, optional TestObj? objArg=null) |
| |
| void | overloadedMethodWithOptionalParameter (TestObj? objArg, optional long longArg) |
| |
| void | overloadedMethodWithDistinguishingUnion ((TestObj or TestNode) objectOrNode) |
| |
| void | overloadedMethodWithDistinguishingUnion (long value) |
| |
| void | overloadedMethodWith2DistinguishingUnions ((TestObj or TestNode) objectOrNode) |
| |
| void | overloadedMethodWith2DistinguishingUnions ((TestInterface or DOMString or long) value) |
| |
| void | overloadedMethodWithNonDistinguishingUnion ((TestObj or TestNode) objectOrNode, TestObj object) |
| |
| void | overloadedMethodWithNonDistinguishingUnion ((TestObj or TestNode) objectOrNode, TestNode node) |
| |
| void | overloadWithNullableUnion ((TestObj or TestNode)? objectOrNode) |
| |
| void | overloadWithNullableUnion (long index) |
| |
| void | overloadWithOptionalUnion (optional(DOMString or boolean) objectOrNode=true) |
| |
| void | overloadWithOptionalUnion (long index) |
| |
| void | overloadWithNullableNonDistinguishingParameter (TestObj? obj, TestNode node) |
| |
| void | overloadWithNullableNonDistinguishingParameter (TestNode? node, long index) |
| |
| void | classMethodWithClamp ([Clamp] unsigned short objArgsShort, [Clamp] unsigned long objArgsLong) |
| |
| void | classMethodWithEnforceRange ([EnforceRange] unsigned short objArgsShort, [EnforceRange] unsigned long objArgsLong) |
| |
| void | methodWithUnsignedLongSequence (sequence< unsigned long > unsignedLongSequence) |
| |
| sequence< DOMString > | stringArrayFunction (sequence< DOMString > values) |
| |
| DOMStringList | domStringListFunction (DOMStringList values) |
| |
| void | methodWithAndWithoutNullableSequence (sequence< unsigned long > arrayArg, sequence< unsigned long >? nullableArrayArg) |
| |
| Element | getElementById ([RequiresExistingAtomicString] DOMString elementId) |
| |
| SVGDocument | getSVGDocument () |
| |
| void | convert1 (TestNode value) |
| |
| void | convert2 (TestNode? value) |
| |
| void | convert3 (DOMString value) |
| |
| void | convert4 (DOMString? value) |
| |
| SVGPoint | mutablePointFunction () |
| |
| SVGPoint | immutablePointFunction () |
| |
| void | orange () |
| |
| void | variadicStringMethod (DOMString head, DOMString... tail) |
| |
| void | variadicDoubleMethod (unrestricted double head, unrestricted double... tail) |
| |
| void | variadicNodeMethod (Node head, Node... tail) |
| |
| void | variadicUnionMethod (DOMString head,(Node or DOMString)... tail) |
| |
| void | _any (unrestricted float a, long b) |
| |
| Promise< void > | testPromiseFunction () |
| |
| Promise< void > | testPromiseFunctionWithFloatArgument (float a) |
| |
| Promise< void > | testPromiseFunctionWithException () |
| |
| Promise< void > | testPromiseFunctionWithOptionalIntArgument (optional long a) |
| |
| Promise< void > | testPromiseOverloadedFunction (float a) |
| |
| Promise< void > | testPromiseOverloadedFunction (FetchRequest request) |
| |
| Promise< void > | testCustomPromiseFunction () |
| |
| void | conditionalOverload (DOMString str) |
| |
| void | conditionalOverload (long a) |
| |
| void | singleConditionalOverload (DOMString str) |
| |
| void | singleConditionalOverload (long a) |
| |
| void | attachShadowRoot (TestDictionary init) |
| |
| void | operationWithExternalDictionaryParameter (TestStandaloneDictionary dict) |
| |
| void | bufferSourceParameter (BufferSource data) |
| |