summaryrefslogtreecommitdiff
path: root/Source/WebCore/bindings/scripts/test/TestTypedArray.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/scripts/test/TestTypedArray.idl')
-rw-r--r--Source/WebCore/bindings/scripts/test/TestTypedArray.idl6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/WebCore/bindings/scripts/test/TestTypedArray.idl b/Source/WebCore/bindings/scripts/test/TestTypedArray.idl
index e816b3860..239680c55 100644
--- a/Source/WebCore/bindings/scripts/test/TestTypedArray.idl
+++ b/Source/WebCore/bindings/scripts/test/TestTypedArray.idl
@@ -26,15 +26,17 @@
module html {
interface [
- CustomConstructor,
+ ConstructorTemplate=TypedArray,
ConstructorParameters=123,
NumericIndexedGetter,
CustomIndexedSetter,
JSGenerateToNativeObject,
JSNoStaticTables,
CustomToJSObject,
- DoNotCheckConstants
+ DoNotCheckConstants,
+ TypedArray=double
] Float64Array : ArrayBufferView {
Int32Array foo(in Float32Array array);
+ void set();
};
}