| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary formstrArg, with or without | 5 * Redistribution and use in source and binary formstrArg, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 readonly attribute long readOnlyIntAttr; | 38 readonly attribute long readOnlyIntAttr; |
| 39 readonly attribute DOMString readOnlyStringAttr; | 39 readonly attribute DOMString readOnlyStringAttr; |
| 40 readonly attribute TestObj readOnlyTestObjAttr; | 40 readonly attribute TestObj readOnlyTestObjAttr; |
| 41 attribute short shortAttr; | 41 attribute short shortAttr; |
| 42 attribute unsigned short unsignedShortAttr; | 42 attribute unsigned short unsignedShortAttr; |
| 43 attribute long intAttr; | 43 attribute long intAttr; |
| 44 attribute long long longLongAttr; | 44 attribute long long longLongAttr; |
| 45 attribute unsigned long long unsignedLongLongAttr; | 45 attribute unsigned long long unsignedLongLongAttr; |
| 46 attribute DOMString stringAttr; | 46 attribute DOMString stringAttr; |
| 47 attribute TestObj testObjAttr; | 47 attribute TestObj testObjAttr; |
| 48 |
| 49 // Sequence Attributes |
| 48 attribute sequence<ScriptProfile> sequenceAttr; | 50 attribute sequence<ScriptProfile> sequenceAttr; |
| 51 attribute sequence<int> intSequenceAttr; |
| 52 attribute sequence<short> shortSequenceAttr; |
| 53 attribute sequence<long> longSequenceAttr; |
| 54 attribute sequence<long long> longLongSequenceAttr; |
| 55 attribute sequence<unsigned int> unsignedIntSequenceAttr; |
| 56 attribute sequence<unsigned short> unsignedShortSequenceAttr; |
| 57 attribute sequence<unsigned long> unsignedLongSequenceAttr; |
| 58 attribute sequence<unsigned long long> unsignedLongLongSequenceAttr; |
| 59 attribute sequence<float> floatSequenceAttr; |
| 60 attribute sequence<double> doubleSequenceAttr; |
| 61 attribute sequence<boolean> booleanSequenceAttr; |
| 62 attribute sequence<void> voidSequenceAttr; |
| 63 attribute sequence<Date> dateSequenceAttr; |
| 49 | 64 |
| 50 JS, V8 | 65 JS, V8 |
| 51 // WK_ucfirst, WK_lcfirst exceptional cases. | 66 // WK_ucfirst, WK_lcfirst exceptional cases. |
| 52 attribute TestObj XMLObjAttr; | 67 attribute TestObj XMLObjAttr; |
| 53 attribute boolean create; | 68 attribute boolean create; |
| 54 | 69 |
| 55 // Reflected DOM attributes | 70 // Reflected DOM attributes |
| 56 attribute [Reflect] DOMString reflectedStringAttr; | 71 attribute [Reflect] DOMString reflectedStringAttr; |
| 57 attribute [Reflect] long reflectedIntegralAttr; | 72 attribute [Reflect] long reflectedIntegralAttr; |
| 58 attribute [Reflect] unsigned long reflectedUnsignedIntegralAttr; | 73 attribute [Reflect] unsigned long reflectedUnsignedIntegralAttr; |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 const unsigned short CONST_VALUE_8 = 8; | 250 const unsigned short CONST_VALUE_8 = 8; |
| 236 const short CONST_VALUE_9 = -1; | 251 const short CONST_VALUE_9 = -1; |
| 237 const DOMString CONST_VALUE_10 = "my constant string"; | 252 const DOMString CONST_VALUE_10 = "my constant string"; |
| 238 const unsigned short CONST_VALUE_11 = 0xffffffff; | 253 const unsigned short CONST_VALUE_11 = 0xffffffff; |
| 239 const unsigned short CONST_VALUE_12 = 0x01; | 254 const unsigned short CONST_VALUE_12 = 0x01; |
| 240 const unsigned short CONST_VALUE_13 = 0X20; | 255 const unsigned short CONST_VALUE_13 = 0X20; |
| 241 const unsigned short CONST_VALUE_14 = 0x1abc; | 256 const unsigned short CONST_VALUE_14 = 0x1abc; |
| 242 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; | 257 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; |
| 243 }; | 258 }; |
| 244 } | 259 } |
| OLD | NEW |