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

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

Issue 10443097: Revert "Roll IDL to multivm@567" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 static final int PAGE_RULE = 6; 815 static final int PAGE_RULE = 6;
816 816
817 static final int STYLE_RULE = 1; 817 static final int STYLE_RULE = 1;
818 818
819 static final int UNKNOWN_RULE = 0; 819 static final int UNKNOWN_RULE = 0;
820 820
821 static final int WEBKIT_KEYFRAMES_RULE = 7; 821 static final int WEBKIT_KEYFRAMES_RULE = 7;
822 822
823 static final int WEBKIT_KEYFRAME_RULE = 8; 823 static final int WEBKIT_KEYFRAME_RULE = 8;
824 824
825 static final int WEBKIT_REGION_RULE = 10;
826
825 String cssText; 827 String cssText;
826 828
827 final CSSRule parentRule; 829 final CSSRule parentRule;
828 830
829 final CSSStyleSheet parentStyleSheet; 831 final CSSStyleSheet parentStyleSheet;
830 832
831 final int type; 833 final int type;
832 } 834 }
833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
834 // for details. All rights reserved. Use of this source code is governed by a 836 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 num shadowOffsetY; 1009 num shadowOffsetY;
1008 1010
1009 var /*custom*/ strokeStyle; 1011 var /*custom*/ strokeStyle;
1010 1012
1011 String textAlign; 1013 String textAlign;
1012 1014
1013 String textBaseline; 1015 String textBaseline;
1014 1016
1015 final num webkitBackingStorePixelRatio; 1017 final num webkitBackingStorePixelRatio;
1016 1018
1017 bool webkitImageSmoothingEnabled;
1018
1019 List webkitLineDash; 1019 List webkitLineDash;
1020 1020
1021 num webkitLineDashOffset; 1021 num webkitLineDashOffset;
1022 1022
1023 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise); 1023 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise);
1024 1024
1025 void arcTo(num x1, num y1, num x2, num y2, num radius); 1025 void arcTo(num x1, num y1, num x2, num y2, num radius);
1026 1026
1027 void beginPath(); 1027 void beginPath();
1028 1028
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 static final int UNCACHED = 0; 1382 static final int UNCACHED = 0;
1383 1383
1384 static final int UPDATEREADY = 4; 1384 static final int UPDATEREADY = 4;
1385 } 1385 }
1386 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1386 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1387 // for details. All rights reserved. Use of this source code is governed by a 1387 // for details. All rights reserved. Use of this source code is governed by a
1388 // BSD-style license that can be found in the LICENSE file. 1388 // BSD-style license that can be found in the LICENSE file.
1389 1389
1390 // WARNING: Do not edit - generated code. 1390 // WARNING: Do not edit - generated code.
1391 1391
1392 interface DOMError {
1393
1394 final String name;
1395 }
1396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1397 // for details. All rights reserved. Use of this source code is governed by a
1398 // BSD-style license that can be found in the LICENSE file.
1399
1400 // WARNING: Do not edit - generated code.
1401
1402 interface DOMException { 1392 interface DOMException {
1403 1393
1404 static final int ABORT_ERR = 20; 1394 static final int ABORT_ERR = 20;
1405 1395
1406 static final int DATA_CLONE_ERR = 25; 1396 static final int DATA_CLONE_ERR = 25;
1407 1397
1408 static final int DOMSTRING_SIZE_ERR = 2; 1398 static final int DOMSTRING_SIZE_ERR = 2;
1409 1399
1410 static final int HIERARCHY_REQUEST_ERR = 3; 1400 static final int HIERARCHY_REQUEST_ERR = 3;
1411 1401
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 bool contains(String string); 1668 bool contains(String string);
1679 1669
1680 String item(int index); 1670 String item(int index);
1681 } 1671 }
1682 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1683 // for details. All rights reserved. Use of this source code is governed by a 1673 // for details. All rights reserved. Use of this source code is governed by a
1684 // BSD-style license that can be found in the LICENSE file. 1674 // BSD-style license that can be found in the LICENSE file.
1685 1675
1686 // WARNING: Do not edit - generated code. 1676 // WARNING: Do not edit - generated code.
1687 1677
1688 interface DOMStringMap {
1689 }
1690 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1691 // for details. All rights reserved. Use of this source code is governed by a
1692 // BSD-style license that can be found in the LICENSE file.
1693
1694 // WARNING: Do not edit - generated code.
1695
1696 interface DOMTokenList { 1678 interface DOMTokenList {
1697 1679
1698 final int length; 1680 final int length;
1699 1681
1700 void add(String token); 1682 void add(String token);
1701 1683
1702 bool contains(String token); 1684 bool contains(String token);
1703 1685
1704 String item(int index); 1686 String item(int index);
1705 1687
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
1772 final Navigator navigator; 1754 final Navigator navigator;
1773 1755
1774 final bool offscreenBuffering; 1756 final bool offscreenBuffering;
1775 1757
1776 final DOMWindow opener; 1758 final DOMWindow opener;
1777 1759
1778 final int outerHeight; 1760 final int outerHeight;
1779 1761
1780 final int outerWidth; 1762 final int outerWidth;
1781 1763
1782 final PagePopupController pagePopupController;
1783
1784 final int pageXOffset; 1764 final int pageXOffset;
1785 1765
1786 final int pageYOffset; 1766 final int pageYOffset;
1787 1767
1788 final DOMWindow parent; 1768 final DOMWindow parent;
1789 1769
1790 final Performance performance; 1770 final Performance performance;
1791 1771
1792 final BarInfo personalbar; 1772 final BarInfo personalbar;
1793 1773
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 1910
1931 interface DataTransferItem { 1911 interface DataTransferItem {
1932 1912
1933 final String kind; 1913 final String kind;
1934 1914
1935 final String type; 1915 final String type;
1936 1916
1937 Blob getAsFile(); 1917 Blob getAsFile();
1938 1918
1939 void getAsString([StringCallback callback]); 1919 void getAsString([StringCallback callback]);
1920
1921 void webkitGetAsEntry([EntryCallback callback]);
1940 } 1922 }
1941 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1942 // for details. All rights reserved. Use of this source code is governed by a 1924 // for details. All rights reserved. Use of this source code is governed by a
1943 // BSD-style license that can be found in the LICENSE file. 1925 // BSD-style license that can be found in the LICENSE file.
1944 1926
1945 // WARNING: Do not edit - generated code. 1927 // WARNING: Do not edit - generated code.
1946 1928
1947 interface DataTransferItemList { 1929 interface DataTransferItemList {
1948 1930
1949 final int length; 1931 final int length;
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
2338 2320
2339 String queryCommandValue(String command); 2321 String queryCommandValue(String command);
2340 2322
2341 Element querySelector(String selectors); 2323 Element querySelector(String selectors);
2342 2324
2343 NodeList querySelectorAll(String selectors); 2325 NodeList querySelectorAll(String selectors);
2344 2326
2345 void webkitCancelFullScreen(); 2327 void webkitCancelFullScreen();
2346 2328
2347 void webkitExitFullscreen(); 2329 void webkitExitFullscreen();
2330
2331 WebKitNamedFlow webkitGetFlowByName(String name);
2348 } 2332 }
2349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2333 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2350 // for details. All rights reserved. Use of this source code is governed by a 2334 // for details. All rights reserved. Use of this source code is governed by a
2351 // BSD-style license that can be found in the LICENSE file. 2335 // BSD-style license that can be found in the LICENSE file.
2352 2336
2353 // WARNING: Do not edit - generated code. 2337 // WARNING: Do not edit - generated code.
2354 2338
2355 interface DocumentFragment extends Node, NodeSelector { 2339 interface DocumentFragment extends Node, NodeSelector {
2356 2340
2357 Element querySelector(String selectors); 2341 Element querySelector(String selectors);
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after
3623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3624 // for details. All rights reserved. Use of this source code is governed by a 3608 // for details. All rights reserved. Use of this source code is governed by a
3625 // BSD-style license that can be found in the LICENSE file. 3609 // BSD-style license that can be found in the LICENSE file.
3626 3610
3627 // WARNING: Do not edit - generated code. 3611 // WARNING: Do not edit - generated code.
3628 3612
3629 interface HTMLFieldSetElement extends HTMLElement { 3613 interface HTMLFieldSetElement extends HTMLElement {
3630 3614
3631 bool disabled; 3615 bool disabled;
3632 3616
3633 final HTMLCollection elements;
3634
3635 final HTMLFormElement form; 3617 final HTMLFormElement form;
3636 3618
3637 String name; 3619 String name;
3638 3620
3639 final String type; 3621 final String type;
3640 3622
3641 final String validationMessage; 3623 final String validationMessage;
3642 3624
3643 final ValidityState validity; 3625 final ValidityState validity;
3644 3626
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
4257 void pause(); 4239 void pause();
4258 4240
4259 void play(); 4241 void play();
4260 4242
4261 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]); 4243 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]);
4262 4244
4263 void webkitCancelKeyRequest(String keySystem, String sessionId); 4245 void webkitCancelKeyRequest(String keySystem, String sessionId);
4264 4246
4265 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]); 4247 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]);
4266 4248
4267 void webkitSourceAbort(String id); 4249 void webkitSourceAppend(Uint8Array data);
4268
4269 void webkitSourceAddId(String id, String type);
4270
4271 void webkitSourceAppend(String id, Uint8Array data);
4272
4273 TimeRanges webkitSourceBuffered(String id);
4274 4250
4275 void webkitSourceEndOfStream(int status); 4251 void webkitSourceEndOfStream(int status);
4276
4277 void webkitSourceRemoveId(String id);
4278 } 4252 }
4279 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4280 // for details. All rights reserved. Use of this source code is governed by a 4254 // for details. All rights reserved. Use of this source code is governed by a
4281 // BSD-style license that can be found in the LICENSE file. 4255 // BSD-style license that can be found in the LICENSE file.
4282 4256
4283 // WARNING: Do not edit - generated code. 4257 // WARNING: Do not edit - generated code.
4284 4258
4285 interface HTMLMenuElement extends HTMLElement { 4259 interface HTMLMenuElement extends HTMLElement {
4286 4260
4287 bool compact; 4261 bool compact;
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
5187 IDBRequest open(String name); 5161 IDBRequest open(String name);
5188 } 5162 }
5189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5163 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5190 // for details. All rights reserved. Use of this source code is governed by a 5164 // for details. All rights reserved. Use of this source code is governed by a
5191 // BSD-style license that can be found in the LICENSE file. 5165 // BSD-style license that can be found in the LICENSE file.
5192 5166
5193 // WARNING: Do not edit - generated code. 5167 // WARNING: Do not edit - generated code.
5194 5168
5195 interface IDBIndex { 5169 interface IDBIndex {
5196 5170
5197 final /*IDBAny*/ keyPath; 5171 final String keyPath;
5198 5172
5199 final bool multiEntry; 5173 final bool multiEntry;
5200 5174
5201 final String name; 5175 final String name;
5202 5176
5203 final IDBObjectStore objectStore; 5177 final IDBObjectStore objectStore;
5204 5178
5205 final bool unique; 5179 final bool unique;
5206 5180
5207 IDBRequest count([key_OR_range]); 5181 IDBRequest count([key_OR_range]);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
5249 final bool upperOpen; 5223 final bool upperOpen;
5250 } 5224 }
5251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5252 // for details. All rights reserved. Use of this source code is governed by a 5226 // for details. All rights reserved. Use of this source code is governed by a
5253 // BSD-style license that can be found in the LICENSE file. 5227 // BSD-style license that can be found in the LICENSE file.
5254 5228
5255 // WARNING: Do not edit - generated code. 5229 // WARNING: Do not edit - generated code.
5256 5230
5257 interface IDBObjectStore { 5231 interface IDBObjectStore {
5258 5232
5259 final bool autoIncrement;
5260
5261 final List<String> indexNames; 5233 final List<String> indexNames;
5262 5234
5263 final /*IDBAny*/ keyPath; 5235 final String keyPath;
5264 5236
5265 final String name; 5237 final String name;
5266 5238
5267 final IDBTransaction transaction; 5239 final IDBTransaction transaction;
5268 5240
5269 IDBRequest add(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]); 5241 IDBRequest add(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
5270 5242
5271 IDBRequest clear(); 5243 IDBRequest clear();
5272 5244
5273 IDBRequest count([key_OR_range]); 5245 IDBRequest count([key_OR_range]);
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
5530 final bool shiftKey; 5502 final bool shiftKey;
5531 5503
5532 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool sh iftKey, bool metaKey, bool altGraphKey); 5504 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool sh iftKey, bool metaKey, bool altGraphKey);
5533 } 5505 }
5534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5535 // for details. All rights reserved. Use of this source code is governed by a 5507 // for details. All rights reserved. Use of this source code is governed by a
5536 // BSD-style license that can be found in the LICENSE file. 5508 // BSD-style license that can be found in the LICENSE file.
5537 5509
5538 // WARNING: Do not edit - generated code. 5510 // WARNING: Do not edit - generated code.
5539 5511
5540 interface LocalMediaStream extends MediaStream, EventTarget { 5512 interface LocalMediaStream extends MediaStream {
5541 5513
5542 void stop(); 5514 void stop();
5543 } 5515 }
5544 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5545 // for details. All rights reserved. Use of this source code is governed by a 5517 // for details. All rights reserved. Use of this source code is governed by a
5546 // BSD-style license that can be found in the LICENSE file. 5518 // BSD-style license that can be found in the LICENSE file.
5547 5519
5548 // WARNING: Do not edit - generated code. 5520 // WARNING: Do not edit - generated code.
5549 5521
5550 interface Location { 5522 interface Location {
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after
6504 final int orient; 6476 final int orient;
6505 6477
6506 final bool verticalOverflow; 6478 final bool verticalOverflow;
6507 } 6479 }
6508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6509 // for details. All rights reserved. Use of this source code is governed by a 6481 // for details. All rights reserved. Use of this source code is governed by a
6510 // BSD-style license that can be found in the LICENSE file. 6482 // BSD-style license that can be found in the LICENSE file.
6511 6483
6512 // WARNING: Do not edit - generated code. 6484 // WARNING: Do not edit - generated code.
6513 6485
6514 interface PagePopupController {
6515
6516 void setValueAndClosePopup(int numberValue, String stringValue);
6517 }
6518 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6519 // for details. All rights reserved. Use of this source code is governed by a
6520 // BSD-style license that can be found in the LICENSE file.
6521
6522 // WARNING: Do not edit - generated code.
6523
6524 interface PageTransitionEvent extends Event { 6486 interface PageTransitionEvent extends Event {
6525 6487
6526 final bool persisted; 6488 final bool persisted;
6527 } 6489 }
6528 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6490 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6529 // for details. All rights reserved. Use of this source code is governed by a 6491 // for details. All rights reserved. Use of this source code is governed by a
6530 // BSD-style license that can be found in the LICENSE file. 6492 // BSD-style license that can be found in the LICENSE file.
6531 6493
6532 // WARNING: Do not edit - generated code. 6494 // WARNING: Do not edit - generated code.
6533 6495
(...skipping 2608 matching lines...) Expand 10 before | Expand all | Expand 10 after
9142 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { 9104 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan {
9143 9105
9144 String contentScriptType; 9106 String contentScriptType;
9145 9107
9146 String contentStyleType; 9108 String contentStyleType;
9147 9109
9148 num currentScale; 9110 num currentScale;
9149 9111
9150 final SVGPoint currentTranslate; 9112 final SVGPoint currentTranslate;
9151 9113
9152 final SVGViewSpec currentView;
9153
9154 final SVGAnimatedLength height; 9114 final SVGAnimatedLength height;
9155 9115
9156 final num pixelUnitToMillimeterX; 9116 final num pixelUnitToMillimeterX;
9157 9117
9158 final num pixelUnitToMillimeterY; 9118 final num pixelUnitToMillimeterY;
9159 9119
9160 final num screenPixelToMillimeterX; 9120 final num screenPixelToMillimeterX;
9161 9121
9162 final num screenPixelToMillimeterY; 9122 final num screenPixelToMillimeterY;
9163 9123
9164 final bool useCurrentView; 9124 bool useCurrentView;
9165 9125
9166 final SVGRect viewport; 9126 final SVGRect viewport;
9167 9127
9168 final SVGAnimatedLength width; 9128 final SVGAnimatedLength width;
9169 9129
9170 final SVGAnimatedLength x; 9130 final SVGAnimatedLength x;
9171 9131
9172 final SVGAnimatedLength y; 9132 final SVGAnimatedLength y;
9173 9133
9174 bool animationsPaused(); 9134 bool animationsPaused();
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
9582 interface SVGViewElement extends SVGElement, SVGExternalResourcesRequired, SVGFi tToViewBox, SVGZoomAndPan { 9542 interface SVGViewElement extends SVGElement, SVGExternalResourcesRequired, SVGFi tToViewBox, SVGZoomAndPan {
9583 9543
9584 final SVGStringList viewTarget; 9544 final SVGStringList viewTarget;
9585 } 9545 }
9586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9587 // for details. All rights reserved. Use of this source code is governed by a 9547 // for details. All rights reserved. Use of this source code is governed by a
9588 // BSD-style license that can be found in the LICENSE file. 9548 // BSD-style license that can be found in the LICENSE file.
9589 9549
9590 // WARNING: Do not edit - generated code. 9550 // WARNING: Do not edit - generated code.
9591 9551
9592 interface SVGViewSpec { 9552 interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox {
9593
9594 final SVGAnimatedPreserveAspectRatio preserveAspectRatio;
9595 9553
9596 final String preserveAspectRatioString; 9554 final String preserveAspectRatioString;
9597 9555
9598 final SVGTransformList transform; 9556 final SVGTransformList transform;
9599 9557
9600 final String transformString; 9558 final String transformString;
9601 9559
9602 final SVGAnimatedRect viewBox;
9603
9604 final String viewBoxString; 9560 final String viewBoxString;
9605 9561
9606 final SVGElement viewTarget; 9562 final SVGElement viewTarget;
9607 9563
9608 final String viewTargetString; 9564 final String viewTargetString;
9609
9610 int zoomAndPan;
9611 } 9565 }
9612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9613 // for details. All rights reserved. Use of this source code is governed by a 9567 // for details. All rights reserved. Use of this source code is governed by a
9614 // BSD-style license that can be found in the LICENSE file. 9568 // BSD-style license that can be found in the LICENSE file.
9615 9569
9616 // WARNING: Do not edit - generated code. 9570 // WARNING: Do not edit - generated code.
9617 9571
9618 interface SVGZoomAndPan { 9572 interface SVGZoomAndPan {
9619 9573
9620 static final int SVG_ZOOMANDPAN_DISABLE = 1; 9574 static final int SVG_ZOOMANDPAN_DISABLE = 1;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
9732 ShadowRoot(Element host); 9686 ShadowRoot(Element host);
9733 9687
9734 final Element activeElement; 9688 final Element activeElement;
9735 9689
9736 bool applyAuthorStyles; 9690 bool applyAuthorStyles;
9737 9691
9738 final Element host; 9692 final Element host;
9739 9693
9740 String innerHTML; 9694 String innerHTML;
9741 9695
9696 final DOMSelection selection;
9697
9742 Element getElementById(String elementId); 9698 Element getElementById(String elementId);
9743 9699
9744 NodeList getElementsByClassName(String className); 9700 NodeList getElementsByClassName(String className);
9745 9701
9746 NodeList getElementsByTagName(String tagName); 9702 NodeList getElementsByTagName(String tagName);
9747 9703
9748 NodeList getElementsByTagNameNS(String namespaceURI, String localName); 9704 NodeList getElementsByTagNameNS(String namespaceURI, String localName);
9749
9750 DOMSelection getSelection();
9751 } 9705 }
9752 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9753 // for details. All rights reserved. Use of this source code is governed by a 9707 // for details. All rights reserved. Use of this source code is governed by a
9754 // BSD-style license that can be found in the LICENSE file. 9708 // BSD-style license that can be found in the LICENSE file.
9755 9709
9756 // WARNING: Do not edit - generated code. 9710 // WARNING: Do not edit - generated code.
9757 9711
9758 interface SharedWorker extends AbstractWorker default _SharedWorkerFactoryProvid er { 9712 interface SharedWorker extends AbstractWorker default _SharedWorkerFactoryProvid er {
9759 9713
9760 SharedWorker(String scriptURL, [String name]); 9714 SharedWorker(String scriptURL, [String name]);
(...skipping 2019 matching lines...) Expand 10 before | Expand all | Expand 10 after
11780 String toString(); 11734 String toString();
11781 11735
11782 WebKitCSSMatrix translate(num x, num y, num z); 11736 WebKitCSSMatrix translate(num x, num y, num z);
11783 } 11737 }
11784 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11738 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11785 // for details. All rights reserved. Use of this source code is governed by a 11739 // for details. All rights reserved. Use of this source code is governed by a
11786 // BSD-style license that can be found in the LICENSE file. 11740 // BSD-style license that can be found in the LICENSE file.
11787 11741
11788 // WARNING: Do not edit - generated code. 11742 // WARNING: Do not edit - generated code.
11789 11743
11744 interface WebKitCSSRegionRule extends CSSRule {
11745
11746 final CSSRuleList cssRules;
11747 }
11748 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11749 // for details. All rights reserved. Use of this source code is governed by a
11750 // BSD-style license that can be found in the LICENSE file.
11751
11752 // WARNING: Do not edit - generated code.
11753
11790 interface WebKitCSSTransformValue extends CSSValueList { 11754 interface WebKitCSSTransformValue extends CSSValueList {
11791 11755
11792 static final int CSS_MATRIX = 11; 11756 static final int CSS_MATRIX = 11;
11793 11757
11794 static final int CSS_MATRIX3D = 21; 11758 static final int CSS_MATRIX3D = 21;
11795 11759
11796 static final int CSS_PERSPECTIVE = 20; 11760 static final int CSS_PERSPECTIVE = 20;
11797 11761
11798 static final int CSS_ROTATE = 4; 11762 static final int CSS_ROTATE = 4;
11799 11763
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
11848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11812 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11849 // for details. All rights reserved. Use of this source code is governed by a 11813 // for details. All rights reserved. Use of this source code is governed by a
11850 // BSD-style license that can be found in the LICENSE file. 11814 // BSD-style license that can be found in the LICENSE file.
11851 11815
11852 // WARNING: Do not edit - generated code. 11816 // WARNING: Do not edit - generated code.
11853 11817
11854 interface WebKitNamedFlow { 11818 interface WebKitNamedFlow {
11855 11819
11856 final NodeList contentNodes; 11820 final NodeList contentNodes;
11857 11821
11858 final String name; 11822 final bool overflow;
11859
11860 final bool overset;
11861 11823
11862 NodeList getRegionsByContentNode(Node contentNode); 11824 NodeList getRegionsByContentNode(Node contentNode);
11863 } 11825 }
11864 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11865 // for details. All rights reserved. Use of this source code is governed by a 11827 // for details. All rights reserved. Use of this source code is governed by a
11866 // BSD-style license that can be found in the LICENSE file. 11828 // BSD-style license that can be found in the LICENSE file.
11867 11829
11868 // WARNING: Do not edit - generated code. 11830 // WARNING: Do not edit - generated code.
11869 11831
11870 interface WebKitPoint default _WebKitPointFactoryProvider { 11832 interface WebKitPoint default _WebKitPointFactoryProvider {
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
12985 // 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
12986 // 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
12987 // BSD-style license that can be found in the LICENSE file. 12949 // BSD-style license that can be found in the LICENSE file.
12988 12950
12989 Window get window() => _dummy(); 12951 Window get window() => _dummy();
12990 12952
12991 // TODO(vsm): Remove when prefixes are supported. 12953 // TODO(vsm): Remove when prefixes are supported.
12992 Window get dom_window() => _dummy(); 12954 Window get dom_window() => _dummy();
12993 12955
12994 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