Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: third_party/WebCore/bindings/scripts/test/TestObj.idl

Issue 10831389: Roll IDL to mutlivm@775. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/WebCore/README ('k') | third_party/WebCore/editing/DOMTransaction.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « third_party/WebCore/README ('k') | third_party/WebCore/editing/DOMTransaction.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698