summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/scripts/test/TestObj.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/scripts/test/TestObj.idl')
-rw-r--r--WebCore/bindings/scripts/test/TestObj.idl10
1 files changed, 9 insertions, 1 deletions
diff --git a/WebCore/bindings/scripts/test/TestObj.idl b/WebCore/bindings/scripts/test/TestObj.idl
index 89dfdf7..22ed680 100644
--- a/WebCore/bindings/scripts/test/TestObj.idl
+++ b/WebCore/bindings/scripts/test/TestObj.idl
@@ -44,7 +44,7 @@ module test {
JS, V8
// WK_ucfirst, WK_lcfirst exceptional cases.
attribute TestObj XMLObjAttr;
- attribute boolean CREATE;
+ attribute boolean create;
// Reflected DOM attributes
attribute [Reflect] DOMString reflectedStringAttr;
@@ -142,6 +142,14 @@ module test {
[ClassMethod] void classMethod();
[ClassMethod] long classMethodWithOptional(in [Optional] long arg);
+#if defined(TESTING_V8)
+ // 'EnabledAtRuntime' methods and attributes.
+ [EnabledAtRuntime] void enabledAtRuntimeMethod1(in int intArg);
+ [EnabledAtRuntime=FeatureName] void enabledAtRuntimeMethod2(in int intArg);
+ attribute [EnabledAtRuntime] long enabledAtRuntimeAttr1;
+ attribute [EnabledAtRuntime=FeatureName] long enabledAtRuntimeAttr2;
+#endif
+
// ObjectiveC reserved words.
readonly attribute long description;
attribute long id;