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

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

Issue 9987001: Roll IDL forward to multivm@358 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Roll to 358 Created 8 years, 8 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 AudioChannelSplitter createChannelSplitter(); 368 AudioChannelSplitter createChannelSplitter();
369 369
370 ConvolverNode createConvolver(); 370 ConvolverNode createConvolver();
371 371
372 DelayNode createDelayNode([num maxDelayTime]); 372 DelayNode createDelayNode([num maxDelayTime]);
373 373
374 DynamicsCompressorNode createDynamicsCompressor(); 374 DynamicsCompressorNode createDynamicsCompressor();
375 375
376 AudioGainNode createGainNode(); 376 AudioGainNode createGainNode();
377 377
378 HighPass2FilterNode createHighPass2Filter();
379
380 JavaScriptAudioNode createJavaScriptNode(int bufferSize); 378 JavaScriptAudioNode createJavaScriptNode(int bufferSize);
381 379
382 LowPass2FilterNode createLowPass2Filter(); 380 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle ment);
383 381
384 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle ment); 382 Oscillator createOscillator();
385 383
386 AudioPannerNode createPanner(); 384 AudioPannerNode createPanner();
387 385
388 WaveShaperNode createWaveShaper(); 386 WaveShaperNode createWaveShaper();
389 387
388 WaveTable createWaveTable(Float32Array real, Float32Array imag);
389
390 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback]); 390 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback]);
391 391
392 void startRendering(); 392 void startRendering();
393 } 393 }
394 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 394 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
395 // for details. All rights reserved. Use of this source code is governed by a 395 // for details. All rights reserved. Use of this source code is governed by a
396 // BSD-style license that can be found in the LICENSE file. 396 // BSD-style license that can be found in the LICENSE file.
397 397
398 // WARNING: Do not edit - generated code. 398 // WARNING: Do not edit - generated code.
399 399
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 static final int CSS_RGBCOLOR = 25; 747 static final int CSS_RGBCOLOR = 25;
748 748
749 static final int CSS_S = 15; 749 static final int CSS_S = 15;
750 750
751 static final int CSS_STRING = 19; 751 static final int CSS_STRING = 19;
752 752
753 static final int CSS_UNKNOWN = 0; 753 static final int CSS_UNKNOWN = 0;
754 754
755 static final int CSS_URI = 20; 755 static final int CSS_URI = 20;
756 756
757 static final int CSS_VH = 27;
758
759 static final int CSS_VMIN = 28;
760
761 static final int CSS_VW = 26;
762
757 final int primitiveType; 763 final int primitiveType;
758 764
759 Counter getCounterValue(); 765 Counter getCounterValue();
760 766
761 num getFloatValue(int unitType); 767 num getFloatValue(int unitType);
762 768
763 RGBColor getRGBColorValue(); 769 RGBColor getRGBColorValue();
764 770
765 Rect getRectValue(); 771 Rect getRectValue();
766 772
(...skipping 2828 matching lines...) Expand 10 before | Expand all | Expand 10 after
3595 SVGDocument getSVGDocument(); 3601 SVGDocument getSVGDocument();
3596 } 3602 }
3597 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3603 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3598 // for details. All rights reserved. Use of this source code is governed by a 3604 // for details. All rights reserved. Use of this source code is governed by a
3599 // BSD-style license that can be found in the LICENSE file. 3605 // BSD-style license that can be found in the LICENSE file.
3600 3606
3601 // WARNING: Do not edit - generated code. 3607 // WARNING: Do not edit - generated code.
3602 3608
3603 interface HTMLFieldSetElement extends HTMLElement { 3609 interface HTMLFieldSetElement extends HTMLElement {
3604 3610
3611 bool disabled;
3612
3605 final HTMLFormElement form; 3613 final HTMLFormElement form;
3606 3614
3607 String name; 3615 String name;
3608 3616
3609 final String type; 3617 final String type;
3610 3618
3611 final String validationMessage; 3619 final String validationMessage;
3612 3620
3613 final ValidityState validity; 3621 final ValidityState validity;
3614 3622
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
3789 String marginWidth; 3797 String marginWidth;
3790 3798
3791 String name; 3799 String name;
3792 3800
3793 String sandbox; 3801 String sandbox;
3794 3802
3795 String scrolling; 3803 String scrolling;
3796 3804
3797 String src; 3805 String src;
3798 3806
3807 String srcdoc;
3808
3799 String width; 3809 String width;
3800 3810
3801 SVGDocument getSVGDocument(); 3811 SVGDocument getSVGDocument();
3802 } 3812 }
3803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3813 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3804 // for details. All rights reserved. Use of this source code is governed by a 3814 // for details. All rights reserved. Use of this source code is governed by a
3805 // BSD-style license that can be found in the LICENSE file. 3815 // BSD-style license that can be found in the LICENSE file.
3806 3816
3807 // WARNING: Do not edit - generated code. 3817 // WARNING: Do not edit - generated code.
3808 3818
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after
4971 final String oldURL; 4981 final String oldURL;
4972 4982
4973 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL); 4983 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL);
4974 } 4984 }
4975 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4985 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4976 // for details. All rights reserved. Use of this source code is governed by a 4986 // for details. All rights reserved. Use of this source code is governed by a
4977 // BSD-style license that can be found in the LICENSE file. 4987 // BSD-style license that can be found in the LICENSE file.
4978 4988
4979 // WARNING: Do not edit - generated code. 4989 // WARNING: Do not edit - generated code.
4980 4990
4981 interface HighPass2FilterNode extends AudioNode {
4982
4983 final AudioParam cutoff;
4984
4985 final AudioParam resonance;
4986 }
4987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4988 // for details. All rights reserved. Use of this source code is governed by a
4989 // BSD-style license that can be found in the LICENSE file.
4990
4991 // WARNING: Do not edit - generated code.
4992
4993 interface History { 4991 interface History {
4994 4992
4995 final int length; 4993 final int length;
4996 4994
4997 final Dynamic state; 4995 final Dynamic state;
4998 4996
4999 void back(); 4997 void back();
5000 4998
5001 void forward(); 4999 void forward();
5002 5000
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
5089 IDBVersionChangeRequest setVersion(String version); 5087 IDBVersionChangeRequest setVersion(String version);
5090 5088
5091 IDBTransaction transaction(var storeName_OR_storeNames, [int mode]); 5089 IDBTransaction transaction(var storeName_OR_storeNames, [int mode]);
5092 } 5090 }
5093 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5091 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5094 // for details. All rights reserved. Use of this source code is governed by a 5092 // for details. All rights reserved. Use of this source code is governed by a
5095 // BSD-style license that can be found in the LICENSE file. 5093 // BSD-style license that can be found in the LICENSE file.
5096 5094
5097 // WARNING: Do not edit - generated code. 5095 // WARNING: Do not edit - generated code.
5098 5096
5099 interface IDBDatabaseError {
5100
5101 int code;
5102
5103 String message;
5104 }
5105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5106 // for details. All rights reserved. Use of this source code is governed by a
5107 // BSD-style license that can be found in the LICENSE file.
5108
5109 // WARNING: Do not edit - generated code.
5110
5111 interface IDBDatabaseException { 5097 interface IDBDatabaseException {
5112 5098
5113 static final int ABORT_ERR = 8; 5099 static final int ABORT_ERR = 8;
5114 5100
5115 static final int CONSTRAINT_ERR = 4; 5101 static final int CONSTRAINT_ERR = 4;
5116 5102
5117 static final int DATA_ERR = 5; 5103 static final int DATA_ERR = 5;
5118 5104
5119 static final int NON_TRANSIENT_ERR = 2; 5105 static final int NON_TRANSIENT_ERR = 2;
5120 5106
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
5562 void replace(String url); 5548 void replace(String url);
5563 5549
5564 String toString(); 5550 String toString();
5565 } 5551 }
5566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5567 // for details. All rights reserved. Use of this source code is governed by a 5553 // for details. All rights reserved. Use of this source code is governed by a
5568 // BSD-style license that can be found in the LICENSE file. 5554 // BSD-style license that can be found in the LICENSE file.
5569 5555
5570 // WARNING: Do not edit - generated code. 5556 // WARNING: Do not edit - generated code.
5571 5557
5572 interface LowPass2FilterNode extends AudioNode {
5573
5574 final AudioParam cutoff;
5575
5576 final AudioParam resonance;
5577 }
5578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5579 // for details. All rights reserved. Use of this source code is governed by a
5580 // BSD-style license that can be found in the LICENSE file.
5581
5582 // WARNING: Do not edit - generated code.
5583
5584 interface MediaController default _MediaControllerFactoryProvider { 5558 interface MediaController default _MediaControllerFactoryProvider {
5585 5559
5586 MediaController(); 5560 MediaController();
5587 5561
5588 final TimeRanges buffered; 5562 final TimeRanges buffered;
5589 5563
5590 num currentTime; 5564 num currentTime;
5591 5565
5592 num defaultPlaybackRate; 5566 num defaultPlaybackRate;
5593 5567
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
5899 final int y; 5873 final int y;
5900 5874
5901 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow vi ew, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey , bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarge t); 5875 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow vi ew, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey , bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarge t);
5902 } 5876 }
5903 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5904 // for details. All rights reserved. Use of this source code is governed by a 5878 // for details. All rights reserved. Use of this source code is governed by a
5905 // BSD-style license that can be found in the LICENSE file. 5879 // BSD-style license that can be found in the LICENSE file.
5906 5880
5907 // WARNING: Do not edit - generated code. 5881 // WARNING: Do not edit - generated code.
5908 5882
5883 interface MutationCallback {
5884 }
5885 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5886 // for details. All rights reserved. Use of this source code is governed by a
5887 // BSD-style license that can be found in the LICENSE file.
5888
5889 // WARNING: Do not edit - generated code.
5890
5909 interface MutationEvent extends Event { 5891 interface MutationEvent extends Event {
5910 5892
5911 static final int ADDITION = 2; 5893 static final int ADDITION = 2;
5912 5894
5913 static final int MODIFICATION = 1; 5895 static final int MODIFICATION = 1;
5914 5896
5915 static final int REMOVAL = 3; 5897 static final int REMOVAL = 3;
5916 5898
5917 final int attrChange; 5899 final int attrChange;
5918 5900
5919 final String attrName; 5901 final String attrName;
5920 5902
5921 final String newValue; 5903 final String newValue;
5922 5904
5923 final String prevValue; 5905 final String prevValue;
5924 5906
5925 final Node relatedNode; 5907 final Node relatedNode;
5926 5908
5927 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange); 5909 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange);
5928 } 5910 }
5929 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5911 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5930 // for details. All rights reserved. Use of this source code is governed by a 5912 // for details. All rights reserved. Use of this source code is governed by a
5931 // BSD-style license that can be found in the LICENSE file. 5913 // BSD-style license that can be found in the LICENSE file.
5932 5914
5933 // WARNING: Do not edit - generated code. 5915 // WARNING: Do not edit - generated code.
5934 5916
5917 interface MutationRecord {
5918
5919 final NodeList addedNodes;
5920
5921 final String attributeName;
5922
5923 final String attributeNamespace;
5924
5925 final Node nextSibling;
5926
5927 final String oldValue;
5928
5929 final Node previousSibling;
5930
5931 final NodeList removedNodes;
5932
5933 final Node target;
5934
5935 final String type;
5936 }
5937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5938 // for details. All rights reserved. Use of this source code is governed by a
5939 // BSD-style license that can be found in the LICENSE file.
5940
5941 // WARNING: Do not edit - generated code.
5942
5935 interface NamedNodeMap extends List<Node> { 5943 interface NamedNodeMap extends List<Node> {
5936 5944
5937 final int length; 5945 final int length;
5938 5946
5939 Node getNamedItem(String name); 5947 Node getNamedItem(String name);
5940 5948
5941 Node getNamedItemNS(String namespaceURI, String localName); 5949 Node getNamedItemNS(String namespaceURI, String localName);
5942 5950
5943 Node item(int index); 5951 Node item(int index);
5944 5952
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
6245 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6246 // for details. All rights reserved. Use of this source code is governed by a 6254 // for details. All rights reserved. Use of this source code is governed by a
6247 // BSD-style license that can be found in the LICENSE file. 6255 // BSD-style license that can be found in the LICENSE file.
6248 6256
6249 // WARNING: Do not edit - generated code. 6257 // WARNING: Do not edit - generated code.
6250 6258
6251 interface Notification extends EventTarget { 6259 interface Notification extends EventTarget {
6252 6260
6253 String dir; 6261 String dir;
6254 6262
6255 String replaceId; 6263 String tag;
6256 6264
6257 void addEventListener(String type, EventListener listener, [bool useCapture]); 6265 void addEventListener(String type, EventListener listener, [bool useCapture]);
6258 6266
6259 void cancel(); 6267 void close();
6260 6268
6261 bool dispatchEvent(Event evt); 6269 bool dispatchEvent(Event evt);
6262 6270
6263 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 6271 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
6264 6272
6265 void show(); 6273 void show();
6266 } 6274 }
6267 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6275 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6268 // for details. All rights reserved. Use of this source code is governed by a 6276 // for details. All rights reserved. Use of this source code is governed by a
6269 // BSD-style license that can be found in the LICENSE file. 6277 // BSD-style license that can be found in the LICENSE file.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
6343 final String name; 6351 final String name;
6344 6352
6345 String toString(); 6353 String toString();
6346 } 6354 }
6347 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6355 // 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 6356 // 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. 6357 // BSD-style license that can be found in the LICENSE file.
6350 6358
6351 // WARNING: Do not edit - generated code. 6359 // WARNING: Do not edit - generated code.
6352 6360
6361 interface Oscillator extends AudioSourceNode {
6362
6363 static final int CUSTOM = 4;
6364
6365 static final int SAWTOOTH = 2;
6366
6367 static final int SINE = 0;
6368
6369 static final int SQUARE = 1;
6370
6371 static final int TRIANGLE = 3;
6372
6373 final AudioParam detune;
6374
6375 final AudioParam frequency;
6376
6377 int type;
6378
6379 void setWaveTable(WaveTable waveTable);
6380 }
6381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6382 // for details. All rights reserved. Use of this source code is governed by a
6383 // BSD-style license that can be found in the LICENSE file.
6384
6385 // WARNING: Do not edit - generated code.
6386
6353 interface OverflowEvent extends Event { 6387 interface OverflowEvent extends Event {
6354 6388
6355 static final int BOTH = 2; 6389 static final int BOTH = 2;
6356 6390
6357 static final int HORIZONTAL = 0; 6391 static final int HORIZONTAL = 0;
6358 6392
6359 static final int VERTICAL = 1; 6393 static final int VERTICAL = 1;
6360 6394
6361 final bool horizontalOverflow; 6395 final bool horizontalOverflow;
6362 6396
(...skipping 4001 matching lines...) Expand 10 before | Expand all | Expand 10 after
10364 interface WaveShaperNode extends AudioNode { 10398 interface WaveShaperNode extends AudioNode {
10365 10399
10366 Float32Array curve; 10400 Float32Array curve;
10367 } 10401 }
10368 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10402 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10369 // for details. All rights reserved. Use of this source code is governed by a 10403 // for details. All rights reserved. Use of this source code is governed by a
10370 // BSD-style license that can be found in the LICENSE file. 10404 // BSD-style license that can be found in the LICENSE file.
10371 10405
10372 // WARNING: Do not edit - generated code. 10406 // WARNING: Do not edit - generated code.
10373 10407
10408 interface WaveTable {
10409 }
10410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10411 // for details. All rights reserved. Use of this source code is governed by a
10412 // BSD-style license that can be found in the LICENSE file.
10413
10414 // WARNING: Do not edit - generated code.
10415
10374 interface WebGLActiveInfo { 10416 interface WebGLActiveInfo {
10375 10417
10376 final String name; 10418 final String name;
10377 10419
10378 final int size; 10420 final int size;
10379 10421
10380 final int type; 10422 final int type;
10381 } 10423 }
10382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10383 // for details. All rights reserved. Use of this source code is governed by a 10425 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
11226 String getProgramInfoLog(WebGLProgram program); 11268 String getProgramInfoLog(WebGLProgram program);
11227 11269
11228 Object getProgramParameter(WebGLProgram program, int pname); 11270 Object getProgramParameter(WebGLProgram program, int pname);
11229 11271
11230 Object getRenderbufferParameter(int target, int pname); 11272 Object getRenderbufferParameter(int target, int pname);
11231 11273
11232 String getShaderInfoLog(WebGLShader shader); 11274 String getShaderInfoLog(WebGLShader shader);
11233 11275
11234 Object getShaderParameter(WebGLShader shader, int pname); 11276 Object getShaderParameter(WebGLShader shader, int pname);
11235 11277
11278 WebGLShaderPrecisionFormat getShaderPrecisionFormat(int shadertype, int precis iontype);
11279
11236 String getShaderSource(WebGLShader shader); 11280 String getShaderSource(WebGLShader shader);
11237 11281
11238 Object getTexParameter(int target, int pname); 11282 Object getTexParameter(int target, int pname);
11239 11283
11240 Object getUniform(WebGLProgram program, WebGLUniformLocation location); 11284 Object getUniform(WebGLProgram program, WebGLUniformLocation location);
11241 11285
11242 WebGLUniformLocation getUniformLocation(WebGLProgram program, String name); 11286 WebGLUniformLocation getUniformLocation(WebGLProgram program, String name);
11243 11287
11244 Object getVertexAttrib(int index, int pname); 11288 Object getVertexAttrib(int index, int pname);
11245 11289
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
11372 // WARNING: Do not edit - generated code. 11416 // WARNING: Do not edit - generated code.
11373 11417
11374 interface WebGLShader { 11418 interface WebGLShader {
11375 } 11419 }
11376 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11420 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11377 // for details. All rights reserved. Use of this source code is governed by a 11421 // for details. All rights reserved. Use of this source code is governed by a
11378 // BSD-style license that can be found in the LICENSE file. 11422 // BSD-style license that can be found in the LICENSE file.
11379 11423
11380 // WARNING: Do not edit - generated code. 11424 // WARNING: Do not edit - generated code.
11381 11425
11426 interface WebGLShaderPrecisionFormat {
11427
11428 final int precision;
11429
11430 final int rangeMax;
11431
11432 final int rangeMin;
11433 }
11434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11435 // for details. All rights reserved. Use of this source code is governed by a
11436 // BSD-style license that can be found in the LICENSE file.
11437
11438 // WARNING: Do not edit - generated code.
11439
11382 interface WebGLTexture { 11440 interface WebGLTexture {
11383 } 11441 }
11384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11385 // for details. All rights reserved. Use of this source code is governed by a 11443 // for details. All rights reserved. Use of this source code is governed by a
11386 // BSD-style license that can be found in the LICENSE file. 11444 // BSD-style license that can be found in the LICENSE file.
11387 11445
11388 // WARNING: Do not edit - generated code. 11446 // WARNING: Do not edit - generated code.
11389 11447
11390 interface WebGLUniformLocation { 11448 interface WebGLUniformLocation {
11391 } 11449 }
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
11642 static final int CSS_TRANSLATEZ = 12; 11700 static final int CSS_TRANSLATEZ = 12;
11643 11701
11644 final int operationType; 11702 final int operationType;
11645 } 11703 }
11646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11704 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11647 // for details. All rights reserved. Use of this source code is governed by a 11705 // for details. All rights reserved. Use of this source code is governed by a
11648 // BSD-style license that can be found in the LICENSE file. 11706 // BSD-style license that can be found in the LICENSE file.
11649 11707
11650 // WARNING: Do not edit - generated code. 11708 // WARNING: Do not edit - generated code.
11651 11709
11710 interface WebKitMutationObserver {
11711
11712 void disconnect();
11713 }
11714 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11715 // for details. All rights reserved. Use of this source code is governed by a
11716 // BSD-style license that can be found in the LICENSE file.
11717
11718 // WARNING: Do not edit - generated code.
11719
11652 interface WebKitNamedFlow { 11720 interface WebKitNamedFlow {
11653 11721
11654 final bool overflow; 11722 final bool overflow;
11655 11723
11656 NodeList getRegionsByContentNode(Node contentNode); 11724 NodeList getRegionsByContentNode(Node contentNode);
11657 } 11725 }
11658 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11726 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11659 // for details. All rights reserved. Use of this source code is governed by a 11727 // for details. All rights reserved. Use of this source code is governed by a
11660 // BSD-style license that can be found in the LICENSE file. 11728 // BSD-style license that can be found in the LICENSE file.
11661 11729
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
12777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12845 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12778 // for details. All rights reserved. Use of this source code is governed by a 12846 // for details. All rights reserved. Use of this source code is governed by a
12779 // BSD-style license that can be found in the LICENSE file. 12847 // BSD-style license that can be found in the LICENSE file.
12780 12848
12781 Window get window() => _dummy(); 12849 Window get window() => _dummy();
12782 12850
12783 // TODO(vsm): Remove when prefixes are supported. 12851 // TODO(vsm): Remove when prefixes are supported.
12784 Window get dom_window() => _dummy(); 12852 Window get dom_window() => _dummy();
12785 12853
12786 Document get document() => _dummy(); 12854 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