| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 #if defined(TESTING_V8) || defined(TESTING_JS) | 219 #if defined(TESTING_V8) || defined(TESTING_JS) |
| 220 DOMString[] stringArrayFunction(in DOMString[] values) raises(DOMExcepti
on); | 220 DOMString[] stringArrayFunction(in DOMString[] values) raises(DOMExcepti
on); |
| 221 #endif | 221 #endif |
| 222 | 222 |
| 223 readonly attribute [CheckSecurityForNode] Document contentDocument; | 223 readonly attribute [CheckSecurityForNode] Document contentDocument; |
| 224 [CheckSecurityForNode] SVGDocument getSVGDocument() | 224 [CheckSecurityForNode] SVGDocument getSVGDocument() |
| 225 raises(DOMException); | 225 raises(DOMException); |
| 226 | 226 |
| 227 void convert1(in [TreatReturnedNullStringAs=Null] a); | 227 void convert1(in [TreatReturnedNullStringAs=Null] a); |
| 228 void convert2(in [TreatReturnedNullStringAs=Undefined] b); | 228 void convert2(in [TreatReturnedNullStringAs=Undefined] b); |
| 229 void convert3(in [TreatReturnedNullStringAs=False] c); | |
| 230 void convert4(in [TreatNullAs=NullString] d); | 229 void convert4(in [TreatNullAs=NullString] d); |
| 231 void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e
); | 230 void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e
); |
| 232 | 231 |
| 233 attribute SVGPoint mutablePoint; | 232 attribute SVGPoint mutablePoint; |
| 234 attribute [Immutable] SVGPoint immutablePoint; | 233 attribute [Immutable] SVGPoint immutablePoint; |
| 235 SVGPoint mutablePointFunction(); | 234 SVGPoint mutablePointFunction(); |
| 236 [Immutable] SVGPoint immutablePointFunction(); | 235 [Immutable] SVGPoint immutablePointFunction(); |
| 237 | 236 |
| 238 [ImplementedAs=banana] void orange(); | 237 [ImplementedAs=banana] void orange(); |
| 239 attribute [ImplementedAs=blueberry] long strawberry; | 238 attribute [ImplementedAs=blueberry] long strawberry; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 257 const DOMString CONST_VALUE_10 = "my constant string"; | 256 const DOMString CONST_VALUE_10 = "my constant string"; |
| 258 const unsigned short CONST_VALUE_11 = 0xffffffff; | 257 const unsigned short CONST_VALUE_11 = 0xffffffff; |
| 259 const unsigned short CONST_VALUE_12 = 0x01; | 258 const unsigned short CONST_VALUE_12 = 0x01; |
| 260 const unsigned short CONST_VALUE_13 = 0X20; | 259 const unsigned short CONST_VALUE_13 = 0X20; |
| 261 const unsigned short CONST_VALUE_14 = 0x1abc; | 260 const unsigned short CONST_VALUE_14 = 0x1abc; |
| 262 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; | 261 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; |
| 263 | 262 |
| 264 attribute [Replaceable] long replaceableAttribute; | 263 attribute [Replaceable] long replaceableAttribute; |
| 265 }; | 264 }; |
| 266 } | 265 } |
| OLD | NEW |