Index: Source/bindings/tests/idls/TestObjectPython.idl |
diff --git a/Source/bindings/tests/idls/TestObjectPython.idl b/Source/bindings/tests/idls/TestObjectPython.idl |
index 51dd3ce0b39319c6d3dbd1baf234c4dad01d1cc9..fdd3e33353e94313887553c1ea6bebd198877273 100644 |
--- a/Source/bindings/tests/idls/TestObjectPython.idl |
+++ b/Source/bindings/tests/idls/TestObjectPython.idl |
@@ -33,24 +33,29 @@ enum TestEnum {"", "EnumValue1", "EnumValue2", "EnumValue3"}; |
interface TestObjectPython { |
// TestInterfaceEmpty is used as a stub interface type, for testing behavior |
// that should not depend on particular type (beyond "interface or not"). |
+ // readonly |
+ readonly attribute DOMString readonlyStringAttribute; |
+ readonly attribute TestInterfaceEmpty readonlyTestInterfaceEmptyAttribute; |
+ readonly attribute long readonlyLongAttribute; |
+ // Basic types |
readonly attribute Date readonlyDateAttribute; |
readonly attribute DOMString readonlyStringAttribute; |
readonly attribute DOMTimeStamp readonlyDOMTimeStampAttribute; |
- readonly attribute boolean readonlyBooleanAttribute; |
- readonly attribute byte readonlyByteAttribute; |
- readonly attribute double readonlyDoubleAttribute; |
- readonly attribute float readonlyFloatAttribute; |
- readonly attribute long readonlyLongAttribute; |
- readonly attribute long long readonlyLongLongAttribute; |
- readonly attribute octet readonlyOctetAttribute; |
- readonly attribute short readonlyShortAttribute; |
- readonly attribute unsigned long readonlyUnsignedLongAttribute; |
- readonly attribute unsigned long long readonlyUnsignedLongLongAttribute; |
- readonly attribute unsigned short readonlyUnsignedShortAttribute; |
+ attribute boolean booleanAttribute; |
+ attribute byte byteAttribute; |
+ attribute double doubleAttribute; |
+ attribute float floatAttribute; |
+ attribute long longAttribute; |
+ attribute long long longLongAttribute; |
+ attribute octet octetAttribute; |
+ attribute short shortAttribute; |
+ attribute unsigned long unsignedLongAttribute; |
+ attribute unsigned long long unsignedLongLongAttribute; |
+ attribute unsigned short unsignedShortAttribute; |
// Non-wrapper types |
readonly attribute NodeFilter readonlyNodeFilterAttribute; |
readonly attribute SerializedScriptValue readonlySerializedScriptValueAttribute; |
- readonly attribute any readonlyAnyAttribute; |
+ attribute any anyAttribute; |
// DOM Node types |
readonly attribute Document readonlyDocumentAttribute; |
readonly attribute DocumentFragment readonlyDocumentFragmentAttribute; |