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

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

Issue 9689026: Regenerate DOM bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review change Created 8 years, 9 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 | client/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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 static final int CSS_RGBCOLOR = 25; 693 static final int CSS_RGBCOLOR = 25;
694 694
695 static final int CSS_S = 15; 695 static final int CSS_S = 15;
696 696
697 static final int CSS_STRING = 19; 697 static final int CSS_STRING = 19;
698 698
699 static final int CSS_UNKNOWN = 0; 699 static final int CSS_UNKNOWN = 0;
700 700
701 static final int CSS_URI = 20; 701 static final int CSS_URI = 20;
702 702
703 static final int CSS_VH = 27;
704
705 static final int CSS_VMIN = 28;
706
707 static final int CSS_VW = 26;
708
709 final int primitiveType; 703 final int primitiveType;
710 704
711 Counter getCounterValue(); 705 Counter getCounterValue();
712 706
713 num getFloatValue(int unitType); 707 num getFloatValue(int unitType);
714 708
715 RGBColor getRGBColorValue(); 709 RGBColor getRGBColorValue();
716 710
717 Rect getRectValue(); 711 Rect getRectValue();
718 712
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after
2251 final AudioParam reduction; 2245 final AudioParam reduction;
2252 2246
2253 final AudioParam threshold; 2247 final AudioParam threshold;
2254 } 2248 }
2255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2249 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2256 // for details. All rights reserved. Use of this source code is governed by a 2250 // for details. All rights reserved. Use of this source code is governed by a
2257 // BSD-style license that can be found in the LICENSE file. 2251 // BSD-style license that can be found in the LICENSE file.
2258 2252
2259 // WARNING: Do not edit - generated code. 2253 // WARNING: Do not edit - generated code.
2260 2254
2255 interface EXTTextureFilterAnisotropic {
2256
2257 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
2258
2259 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
2260 }
2261 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2262 // for details. All rights reserved. Use of this source code is governed by a
2263 // BSD-style license that can be found in the LICENSE file.
2264
2265 // WARNING: Do not edit - generated code.
2266
2261 interface Element extends Node, NodeSelector, ElementTraversal { 2267 interface Element extends Node, NodeSelector, ElementTraversal {
2262 2268
2263 static final int ALLOW_KEYBOARD_INPUT = 1; 2269 static final int ALLOW_KEYBOARD_INPUT = 1;
2264 2270
2265 final int childElementCount; 2271 final int childElementCount;
2266 2272
2267 final int clientHeight; 2273 final int clientHeight;
2268 2274
2269 final int clientLeft; 2275 final int clientLeft;
2270 2276
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
3365 final String compatMode; 3371 final String compatMode;
3366 3372
3367 String designMode; 3373 String designMode;
3368 3374
3369 String dir; 3375 String dir;
3370 3376
3371 final HTMLCollection embeds; 3377 final HTMLCollection embeds;
3372 3378
3373 String fgColor; 3379 String fgColor;
3374 3380
3381 final int height;
3382
3375 String linkColor; 3383 String linkColor;
3376 3384
3377 final HTMLCollection plugins; 3385 final HTMLCollection plugins;
3378 3386
3379 final HTMLCollection scripts; 3387 final HTMLCollection scripts;
3380 3388
3381 String vlinkColor; 3389 String vlinkColor;
3382 3390
3391 final int width;
3392
3383 void captureEvents(); 3393 void captureEvents();
3384 3394
3385 void clear(); 3395 void clear();
3386 3396
3387 void close(); 3397 void close();
3388 3398
3389 bool hasFocus(); 3399 bool hasFocus();
3390 3400
3391 void open(); 3401 void open();
3392 3402
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
3477 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3487 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3478 // for details. All rights reserved. Use of this source code is governed by a 3488 // for details. All rights reserved. Use of this source code is governed by a
3479 // BSD-style license that can be found in the LICENSE file. 3489 // BSD-style license that can be found in the LICENSE file.
3480 3490
3481 // WARNING: Do not edit - generated code. 3491 // WARNING: Do not edit - generated code.
3482 3492
3483 interface HTMLFieldSetElement extends HTMLElement { 3493 interface HTMLFieldSetElement extends HTMLElement {
3484 3494
3485 final HTMLFormElement form; 3495 final HTMLFormElement form;
3486 3496
3497 String name;
3498
3499 final String type;
3500
3487 final String validationMessage; 3501 final String validationMessage;
3488 3502
3489 final ValidityState validity; 3503 final ValidityState validity;
3490 3504
3491 final bool willValidate; 3505 final bool willValidate;
3492 3506
3493 bool checkValidity(); 3507 bool checkValidity();
3494 3508
3495 void setCustomValidity(String error); 3509 void setCustomValidity(String error);
3496 } 3510 }
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
4431 bool multiple; 4445 bool multiple;
4432 4446
4433 String name; 4447 String name;
4434 4448
4435 final HTMLOptionsCollection options; 4449 final HTMLOptionsCollection options;
4436 4450
4437 bool required; 4451 bool required;
4438 4452
4439 int selectedIndex; 4453 int selectedIndex;
4440 4454
4455 final HTMLCollection selectedOptions;
4456
4441 int size; 4457 int size;
4442 4458
4443 final String type; 4459 final String type;
4444 4460
4445 final String validationMessage; 4461 final String validationMessage;
4446 4462
4447 final ValidityState validity; 4463 final ValidityState validity;
4448 4464
4449 String value; 4465 String value;
4450 4466
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
4759 interface HTMLTrackElement extends HTMLElement { 4775 interface HTMLTrackElement extends HTMLElement {
4760 4776
4761 static final int ERROR = 3; 4777 static final int ERROR = 3;
4762 4778
4763 static final int LOADED = 2; 4779 static final int LOADED = 2;
4764 4780
4765 static final int LOADING = 1; 4781 static final int LOADING = 1;
4766 4782
4767 static final int NONE = 0; 4783 static final int NONE = 0;
4768 4784
4769 bool isDefault;
4770
4771 String kind; 4785 String kind;
4772 4786
4773 String label; 4787 String label;
4774 4788
4775 final int readyState; 4789 final int readyState;
4776 4790
4777 String src; 4791 String src;
4778 4792
4779 String srclang; 4793 String srclang;
4780 4794
(...skipping 4577 matching lines...) Expand 10 before | Expand all | Expand 10 after
9358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9359 // for details. All rights reserved. Use of this source code is governed by a 9373 // for details. All rights reserved. Use of this source code is governed by a
9360 // BSD-style license that can be found in the LICENSE file. 9374 // BSD-style license that can be found in the LICENSE file.
9361 9375
9362 // WARNING: Do not edit - generated code. 9376 // WARNING: Do not edit - generated code.
9363 9377
9364 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider { 9378 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider {
9365 9379
9366 ShadowRoot(Element host); 9380 ShadowRoot(Element host);
9367 9381
9382 final Element activeElement;
9383
9368 final Element host; 9384 final Element host;
9369 9385
9370 String innerHTML; 9386 String innerHTML;
9371 9387
9372 Element getElementById(String elementId); 9388 Element getElementById(String elementId);
9373 9389
9374 NodeList getElementsByClassName(String className); 9390 NodeList getElementsByClassName(String className);
9375 9391
9376 NodeList getElementsByTagName(String tagName); 9392 NodeList getElementsByTagName(String tagName);
9377 9393
(...skipping 3044 matching lines...) Expand 10 before | Expand all | Expand 10 after
12422 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12423 // for details. All rights reserved. Use of this source code is governed by a 12439 // for details. All rights reserved. Use of this source code is governed by a
12424 // BSD-style license that can be found in the LICENSE file. 12440 // BSD-style license that can be found in the LICENSE file.
12425 12441
12426 Window get window() => _dummy(); 12442 Window get window() => _dummy();
12427 12443
12428 // TODO(vsm): Remove when prefixes are supported. 12444 // TODO(vsm): Remove when prefixes are supported.
12429 Window get dom_window() => _dummy(); 12445 Window get dom_window() => _dummy();
12430 12446
12431 Document get document() => _dummy(); 12447 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | client/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698