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

Side by Side Diff: lib/dom/dom.dart

Issue 10381128: Roll IDL to multivm@516 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 2707 matching lines...) Expand 10 before | Expand all | Expand 10 after
2718 static final int MOUSEDRAG = 32; 2718 static final int MOUSEDRAG = 32;
2719 2719
2720 static final int MOUSEMOVE = 16; 2720 static final int MOUSEMOVE = 16;
2721 2721
2722 static final int MOUSEOUT = 8; 2722 static final int MOUSEOUT = 8;
2723 2723
2724 static final int MOUSEOVER = 4; 2724 static final int MOUSEOVER = 4;
2725 2725
2726 static final int MOUSEUP = 2; 2726 static final int MOUSEUP = 2;
2727 2727
2728 static final int NONE = 0;
2729
2728 static final int SELECT = 16384; 2730 static final int SELECT = 16384;
2729 2731
2730 final bool bubbles; 2732 final bool bubbles;
2731 2733
2732 bool cancelBubble; 2734 bool cancelBubble;
2733 2735
2734 final bool cancelable; 2736 final bool cancelable;
2735 2737
2736 final Clipboard clipboardData; 2738 final Clipboard clipboardData;
2737 2739
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
3893 String formAction; 3895 String formAction;
3894 3896
3895 String formEnctype; 3897 String formEnctype;
3896 3898
3897 String formMethod; 3899 String formMethod;
3898 3900
3899 bool formNoValidate; 3901 bool formNoValidate;
3900 3902
3901 String formTarget; 3903 String formTarget;
3902 3904
3905 int height;
3906
3903 bool incremental; 3907 bool incremental;
3904 3908
3905 bool indeterminate; 3909 bool indeterminate;
3906 3910
3907 final NodeList labels; 3911 final NodeList labels;
3908 3912
3909 String max; 3913 String max;
3910 3914
3911 int maxLength; 3915 int maxLength;
3912 3916
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
3949 Date valueAsDate; 3953 Date valueAsDate;
3950 3954
3951 num valueAsNumber; 3955 num valueAsNumber;
3952 3956
3953 bool webkitGrammar; 3957 bool webkitGrammar;
3954 3958
3955 bool webkitSpeech; 3959 bool webkitSpeech;
3956 3960
3957 bool webkitdirectory; 3961 bool webkitdirectory;
3958 3962
3963 int width;
3964
3959 final bool willValidate; 3965 final bool willValidate;
3960 3966
3961 bool checkValidity(); 3967 bool checkValidity();
3962 3968
3963 void select(); 3969 void select();
3964 3970
3965 void setCustomValidity(String error); 3971 void setCustomValidity(String error);
3966 3972
3967 void setSelectionRange(int start, int end, [String direction]); 3973 void setSelectionRange(int start, int end, [String direction]);
3968 3974
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
5033 interface IDBCursor { 5039 interface IDBCursor {
5034 5040
5035 static final int NEXT = 0; 5041 static final int NEXT = 0;
5036 5042
5037 static final int NEXT_NO_DUPLICATE = 1; 5043 static final int NEXT_NO_DUPLICATE = 1;
5038 5044
5039 static final int PREV = 2; 5045 static final int PREV = 2;
5040 5046
5041 static final int PREV_NO_DUPLICATE = 3; 5047 static final int PREV_NO_DUPLICATE = 3;
5042 5048
5043 final int direction; 5049 final String direction;
5044 5050
5045 final /*IDBKey*/ key; 5051 final /*IDBKey*/ key;
5046 5052
5047 final /*IDBKey*/ primaryKey; 5053 final /*IDBKey*/ primaryKey;
5048 5054
5049 final /*IDBAny*/ source; 5055 final /*IDBAny*/ source;
5050 5056
5051 void advance(int count); 5057 void advance(int count);
5052 5058
5053 void continueFunction([/*IDBKey*/ key]); 5059 void continueFunction([/*IDBKey*/ key]);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
5087 IDBObjectStore createObjectStore(String name, [Map options]); 5093 IDBObjectStore createObjectStore(String name, [Map options]);
5088 5094
5089 void deleteObjectStore(String name); 5095 void deleteObjectStore(String name);
5090 5096
5091 bool dispatchEvent(Event evt); 5097 bool dispatchEvent(Event evt);
5092 5098
5093 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5099 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5094 5100
5095 IDBVersionChangeRequest setVersion(String version); 5101 IDBVersionChangeRequest setVersion(String version);
5096 5102
5097 IDBTransaction transaction(storeName_OR_storeNames, int mode); 5103 IDBTransaction transaction(storeName_OR_storeNames, mode);
5098 } 5104 }
5099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5100 // for details. All rights reserved. Use of this source code is governed by a 5106 // for details. All rights reserved. Use of this source code is governed by a
5101 // BSD-style license that can be found in the LICENSE file. 5107 // BSD-style license that can be found in the LICENSE file.
5102 5108
5103 // WARNING: Do not edit - generated code. 5109 // WARNING: Do not edit - generated code.
5104 5110
5105 interface IDBDatabaseException { 5111 interface IDBDatabaseException {
5106 5112
5107 static final int ABORT_ERR = 8; 5113 static final int ABORT_ERR = 8;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
5171 final IDBObjectStore objectStore; 5177 final IDBObjectStore objectStore;
5172 5178
5173 final bool unique; 5179 final bool unique;
5174 5180
5175 IDBRequest count([key_OR_range]); 5181 IDBRequest count([key_OR_range]);
5176 5182
5177 IDBRequest get(key); 5183 IDBRequest get(key);
5178 5184
5179 IDBRequest getKey(key); 5185 IDBRequest getKey(key);
5180 5186
5181 IDBRequest openCursor([key_OR_range, int direction]); 5187 IDBRequest openCursor([key_OR_range, direction]);
5182 5188
5183 IDBRequest openKeyCursor([key_OR_range, int direction]); 5189 IDBRequest openKeyCursor([key_OR_range, direction]);
5184 } 5190 }
5185 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5191 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5186 // for details. All rights reserved. Use of this source code is governed by a 5192 // for details. All rights reserved. Use of this source code is governed by a
5187 // BSD-style license that can be found in the LICENSE file. 5193 // BSD-style license that can be found in the LICENSE file.
5188 5194
5189 // WARNING: Do not edit - generated code. 5195 // WARNING: Do not edit - generated code.
5190 5196
5191 interface IDBKey { 5197 interface IDBKey {
5192 } 5198 }
5193 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
5241 IDBIndex createIndex(String name, String keyPath, [Map options]); 5247 IDBIndex createIndex(String name, String keyPath, [Map options]);
5242 5248
5243 IDBRequest delete(key_OR_keyRange); 5249 IDBRequest delete(key_OR_keyRange);
5244 5250
5245 void deleteIndex(String name); 5251 void deleteIndex(String name);
5246 5252
5247 IDBRequest getObject(key); 5253 IDBRequest getObject(key);
5248 5254
5249 IDBIndex index(String name); 5255 IDBIndex index(String name);
5250 5256
5251 IDBRequest openCursor([key_OR_range, int direction]); 5257 IDBRequest openCursor([key_OR_range, direction]);
5252 5258
5253 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]); 5259 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
5254 } 5260 }
5255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5261 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5256 // for details. All rights reserved. Use of this source code is governed by a 5262 // for details. All rights reserved. Use of this source code is governed by a
5257 // BSD-style license that can be found in the LICENSE file. 5263 // BSD-style license that can be found in the LICENSE file.
5258 5264
5259 // WARNING: Do not edit - generated code. 5265 // WARNING: Do not edit - generated code.
5260 5266
5261 interface IDBRequest extends EventTarget { 5267 interface IDBRequest extends EventTarget {
5262 5268
5263 static final int DONE = 2;
5264
5265 static final int LOADING = 1;
5266
5267 final int errorCode; 5269 final int errorCode;
5268 5270
5269 final int readyState; 5271 final String readyState;
5270 5272
5271 final /*IDBAny*/ result; 5273 final /*IDBAny*/ result;
5272 5274
5273 final /*IDBAny*/ source; 5275 final /*IDBAny*/ source;
5274 5276
5275 final IDBTransaction transaction; 5277 final IDBTransaction transaction;
5276 5278
5277 final String webkitErrorMessage; 5279 final String webkitErrorMessage;
5278 5280
5279 void addEventListener(String type, EventListener listener, [bool useCapture]); 5281 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 11 matching lines...) Expand all
5291 interface IDBTransaction extends EventTarget { 5293 interface IDBTransaction extends EventTarget {
5292 5294
5293 static final int READ_ONLY = 0; 5295 static final int READ_ONLY = 0;
5294 5296
5295 static final int READ_WRITE = 1; 5297 static final int READ_WRITE = 1;
5296 5298
5297 static final int VERSION_CHANGE = 2; 5299 static final int VERSION_CHANGE = 2;
5298 5300
5299 final IDBDatabase db; 5301 final IDBDatabase db;
5300 5302
5301 final int mode; 5303 final String mode;
5302 5304
5303 void abort(); 5305 void abort();
5304 5306
5305 void addEventListener(String type, EventListener listener, [bool useCapture]); 5307 void addEventListener(String type, EventListener listener, [bool useCapture]);
5306 5308
5307 bool dispatchEvent(Event evt); 5309 bool dispatchEvent(Event evt);
5308 5310
5309 IDBObjectStore objectStore(String name); 5311 IDBObjectStore objectStore(String name);
5310 5312
5311 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5313 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
6337 interface NotificationCenter { 6339 interface NotificationCenter {
6338 6340
6339 int checkPermission(); 6341 int checkPermission();
6340 6342
6341 Notification createHTMLNotification(String url); 6343 Notification createHTMLNotification(String url);
6342 6344
6343 Notification createNotification(String iconUrl, String title, String body); 6345 Notification createNotification(String iconUrl, String title, String body);
6344 6346
6345 void requestPermission(VoidCallback callback); 6347 void requestPermission(VoidCallback callback);
6346 } 6348 }
6349 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6350 // for details. All rights reserved. Use of this source code is governed by a
6351 // BSD-style license that can be found in the LICENSE file.
6352
6353 // WARNING: Do not edit - generated code.
6354
6355 typedef bool NotificationPermissionCallback(String permission);
6347 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6356 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6348 // for details. All rights reserved. Use of this source code is governed by a 6357 // for details. All rights reserved. Use of this source code is governed by a
6349 // BSD-style license that can be found in the LICENSE file. 6358 // BSD-style license that can be found in the LICENSE file.
6350 6359
6351 // WARNING: Do not edit - generated code. 6360 // WARNING: Do not edit - generated code.
6352 6361
6353 interface OESStandardDerivatives { 6362 interface OESStandardDerivatives {
6354 6363
6355 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; 6364 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B;
6356 } 6365 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
6411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6420 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6412 // for details. All rights reserved. Use of this source code is governed by a 6421 // for details. All rights reserved. Use of this source code is governed by a
6413 // BSD-style license that can be found in the LICENSE file. 6422 // BSD-style license that can be found in the LICENSE file.
6414 6423
6415 // WARNING: Do not edit - generated code. 6424 // WARNING: Do not edit - generated code.
6416 6425
6417 interface Oscillator extends AudioSourceNode { 6426 interface Oscillator extends AudioSourceNode {
6418 6427
6419 static final int CUSTOM = 4; 6428 static final int CUSTOM = 4;
6420 6429
6430 static final int FINISHED_STATE = 3;
6431
6432 static final int PLAYING_STATE = 2;
6433
6421 static final int SAWTOOTH = 2; 6434 static final int SAWTOOTH = 2;
6422 6435
6436 static final int SCHEDULED_STATE = 1;
6437
6423 static final int SINE = 0; 6438 static final int SINE = 0;
6424 6439
6425 static final int SQUARE = 1; 6440 static final int SQUARE = 1;
6426 6441
6427 static final int TRIANGLE = 3; 6442 static final int TRIANGLE = 3;
6428 6443
6444 static final int UNSCHEDULED_STATE = 0;
6445
6429 final AudioParam detune; 6446 final AudioParam detune;
6430 6447
6431 final AudioParam frequency; 6448 final AudioParam frequency;
6432 6449
6450 final int playbackState;
6451
6433 int type; 6452 int type;
6434 6453
6454 void noteOff(num when);
6455
6456 void noteOn(num when);
6457
6435 void setWaveTable(WaveTable waveTable); 6458 void setWaveTable(WaveTable waveTable);
6436 } 6459 }
6437 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6438 // for details. All rights reserved. Use of this source code is governed by a 6461 // for details. All rights reserved. Use of this source code is governed by a
6439 // BSD-style license that can be found in the LICENSE file. 6462 // BSD-style license that can be found in the LICENSE file.
6440 6463
6441 // WARNING: Do not edit - generated code. 6464 // WARNING: Do not edit - generated code.
6442 6465
6443 interface OverflowEvent extends Event { 6466 interface OverflowEvent extends Event {
6444 6467
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
6485 static final int ICE_COMPLETED = 0x500; 6508 static final int ICE_COMPLETED = 0x500;
6486 6509
6487 static final int ICE_CONNECTED = 0x400; 6510 static final int ICE_CONNECTED = 0x400;
6488 6511
6489 static final int ICE_FAILED = 0x600; 6512 static final int ICE_FAILED = 0x600;
6490 6513
6491 static final int ICE_GATHERING = 0x100; 6514 static final int ICE_GATHERING = 0x100;
6492 6515
6493 static final int ICE_WAITING = 0x200; 6516 static final int ICE_WAITING = 0x200;
6494 6517
6495 static final int NEGOTIATING = 1; 6518 static final int NEW = 0;
6496 6519
6497 static final int NEW = 0; 6520 static final int OPENING = 1;
6498 6521
6499 static final int SDP_ANSWER = 0x300; 6522 static final int SDP_ANSWER = 0x300;
6500 6523
6501 static final int SDP_OFFER = 0x100; 6524 static final int SDP_OFFER = 0x100;
6502 6525
6503 static final int SDP_PRANSWER = 0x200; 6526 static final int SDP_PRANSWER = 0x200;
6504 6527
6505 final int iceState; 6528 final int iceState;
6506 6529
6507 final SessionDescription localDescription; 6530 final SessionDescription localDescription;
6508 6531
6509 final MediaStreamList localStreams; 6532 final MediaStreamList localStreams;
6510 6533
6511 final int readyState; 6534 final int readyState;
6512 6535
6513 final SessionDescription remoteDescription; 6536 final SessionDescription remoteDescription;
6514 6537
6515 final MediaStreamList remoteStreams; 6538 final MediaStreamList remoteStreams;
6516 6539
6517 void addEventListener(String type, EventListener listener, [bool useCapture]); 6540 void addEventListener(String type, EventListener listener, [bool useCapture]);
6518 6541
6519 void addStream(MediaStream stream, [String mediaStreamHints]); 6542 void addStream(MediaStream stream, [Map mediaStreamHints]);
6520 6543
6521 void close(); 6544 void close();
6522 6545
6523 SessionDescription createAnswer(String offer, [String mediaHints]); 6546 SessionDescription createAnswer(String offer, [Map mediaHints]);
6524 6547
6525 SessionDescription createOffer([String mediaHints]); 6548 SessionDescription createOffer([Map mediaHints]);
6526 6549
6527 bool dispatchEvent(Event event); 6550 bool dispatchEvent(Event event);
6528 6551
6529 void processIceMessage(IceCandidate candidate); 6552 void processIceMessage(IceCandidate candidate);
6530 6553
6531 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 6554 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
6532 6555
6533 void removeStream(MediaStream stream); 6556 void removeStream(MediaStream stream);
6534 6557
6535 void setLocalDescription(int action, SessionDescription desc); 6558 void setLocalDescription(int action, SessionDescription desc);
6536 6559
6537 void setRemoteDescription(int action, SessionDescription desc); 6560 void setRemoteDescription(int action, SessionDescription desc);
6538 6561
6539 void startIce([String iceOptions]); 6562 void startIce([Map iceOptions]);
6540 } 6563 }
6541 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6564 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6542 // for details. All rights reserved. Use of this source code is governed by a 6565 // for details. All rights reserved. Use of this source code is governed by a
6543 // BSD-style license that can be found in the LICENSE file. 6566 // BSD-style license that can be found in the LICENSE file.
6544 6567
6545 // WARNING: Do not edit - generated code. 6568 // WARNING: Do not edit - generated code.
6546 6569
6547 interface Performance { 6570 interface Performance {
6548 6571
6549 final MemoryInfo memory; 6572 final MemoryInfo memory;
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
6721 final CSSPrimitiveValue green; 6744 final CSSPrimitiveValue green;
6722 6745
6723 final CSSPrimitiveValue red; 6746 final CSSPrimitiveValue red;
6724 } 6747 }
6725 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6748 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6726 // for details. All rights reserved. Use of this source code is governed by a 6749 // for details. All rights reserved. Use of this source code is governed by a
6727 // BSD-style license that can be found in the LICENSE file. 6750 // BSD-style license that can be found in the LICENSE file.
6728 6751
6729 // WARNING: Do not edit - generated code. 6752 // WARNING: Do not edit - generated code.
6730 6753
6754 interface RadioNodeList extends NodeList {
6755
6756 String value;
6757 }
6758 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6759 // for details. All rights reserved. Use of this source code is governed by a
6760 // BSD-style license that can be found in the LICENSE file.
6761
6762 // WARNING: Do not edit - generated code.
6763
6731 interface Range { 6764 interface Range {
6732 6765
6733 static final int END_TO_END = 2; 6766 static final int END_TO_END = 2;
6734 6767
6735 static final int END_TO_START = 3; 6768 static final int END_TO_START = 3;
6736 6769
6737 static final int NODE_AFTER = 1; 6770 static final int NODE_AFTER = 1;
6738 6771
6739 static final int NODE_BEFORE = 0; 6772 static final int NODE_BEFORE = 0;
6740 6773
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
6867 final CSSPrimitiveValue right; 6900 final CSSPrimitiveValue right;
6868 6901
6869 final CSSPrimitiveValue top; 6902 final CSSPrimitiveValue top;
6870 } 6903 }
6871 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 6904 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6872 // for details. All rights reserved. Use of this source code is governed by a 6905 // for details. All rights reserved. Use of this source code is governed by a
6873 // BSD-style license that can be found in the LICENSE file. 6906 // BSD-style license that can be found in the LICENSE file.
6874 6907
6875 // WARNING: Do not edit - generated code. 6908 // WARNING: Do not edit - generated code.
6876 6909
6877 typedef bool RequestAnimationFrameCallback(num highResTime); 6910 typedef bool RequestAnimationFrameCallback(int time);
6878 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6911 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6879 // for details. All rights reserved. Use of this source code is governed by a 6912 // for details. All rights reserved. Use of this source code is governed by a
6880 // BSD-style license that can be found in the LICENSE file. 6913 // BSD-style license that can be found in the LICENSE file.
6881 6914
6882 // WARNING: Do not edit - generated code. 6915 // WARNING: Do not edit - generated code.
6883 6916
6884 interface SQLError { 6917 interface SQLError {
6885 6918
6886 static final int CONSTRAINT_ERR = 6; 6919 static final int CONSTRAINT_ERR = 6;
6887 6920
(...skipping 2759 matching lines...) Expand 10 before | Expand all | Expand 10 after
9647 // BSD-style license that can be found in the LICENSE file. 9680 // BSD-style license that can be found in the LICENSE file.
9648 9681
9649 // WARNING: Do not edit - generated code. 9682 // WARNING: Do not edit - generated code.
9650 9683
9651 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider { 9684 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider {
9652 9685
9653 ShadowRoot(Element host); 9686 ShadowRoot(Element host);
9654 9687
9655 final Element activeElement; 9688 final Element activeElement;
9656 9689
9690 bool applyAuthorStyles;
9691
9657 final Element host; 9692 final Element host;
9658 9693
9659 String innerHTML; 9694 String innerHTML;
9660 9695
9661 final DOMSelection selection; 9696 final DOMSelection selection;
9662 9697
9663 Element getElementById(String elementId); 9698 Element getElementById(String elementId);
9664 9699
9665 NodeList getElementsByClassName(String className); 9700 NodeList getElementsByClassName(String className);
9666 9701
(...skipping 3245 matching lines...) Expand 10 before | Expand all | Expand 10 after
12912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12913 // for details. All rights reserved. Use of this source code is governed by a 12948 // for details. All rights reserved. Use of this source code is governed by a
12914 // BSD-style license that can be found in the LICENSE file. 12949 // BSD-style license that can be found in the LICENSE file.
12915 12950
12916 Window get window() => _dummy(); 12951 Window get window() => _dummy();
12917 12952
12918 // TODO(vsm): Remove when prefixes are supported. 12953 // TODO(vsm): Remove when prefixes are supported.
12919 Window get dom_window() => _dummy(); 12954 Window get dom_window() => _dummy();
12920 12955
12921 Document get document() => _dummy(); 12956 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698