| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 const unsigned short CONST_VALUE_4 = 4; | 254 const unsigned short CONST_VALUE_4 = 4; |
| 255 const unsigned short CONST_VALUE_8 = 8; | 255 const unsigned short CONST_VALUE_8 = 8; |
| 256 const short CONST_VALUE_9 = -1; | 256 const short CONST_VALUE_9 = -1; |
| 257 const DOMString CONST_VALUE_10 = "my constant string"; | 257 const DOMString CONST_VALUE_10 = "my constant string"; |
| 258 const unsigned short CONST_VALUE_11 = 0xffffffff; | 258 const unsigned short CONST_VALUE_11 = 0xffffffff; |
| 259 const unsigned short CONST_VALUE_12 = 0x01; | 259 const unsigned short CONST_VALUE_12 = 0x01; |
| 260 const unsigned short CONST_VALUE_13 = 0X20; | 260 const unsigned short CONST_VALUE_13 = 0X20; |
| 261 const unsigned short CONST_VALUE_14 = 0x1abc; | 261 const unsigned short CONST_VALUE_14 = 0x1abc; |
| 262 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; | 262 [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15; |
| 263 | 263 |
| 264 [Replaceable] attribute long replaceableAttribute; | 264 [Replaceable] readonly attribute long replaceableAttribute; |
| 265 | 265 |
| 266 void variadicStringMethod(in DOMString head, in DOMString... tail); | 266 void variadicStringMethod(in DOMString head, in DOMString... tail); |
| 267 void variadicDoubleMethod(in double head, in double... tail); | 267 void variadicDoubleMethod(in double head, in double... tail); |
| 268 void variadicNodeMethod(in Node head, in Node... tail); | 268 void variadicNodeMethod(in Node head, in Node... tail); |
| 269 }; | 269 }; |
| OLD | NEW |