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

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

Issue 10091020: Fix fremontcutbuilder bug (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 // WARNING: Do not edit - generated code. 332 // WARNING: Do not edit - generated code.
333 333
334 interface AudioChannelSplitter extends AudioNode { 334 interface AudioChannelSplitter extends AudioNode {
335 } 335 }
336 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 336 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
337 // for details. All rights reserved. Use of this source code is governed by a 337 // for details. All rights reserved. Use of this source code is governed by a
338 // BSD-style license that can be found in the LICENSE file. 338 // BSD-style license that can be found in the LICENSE file.
339 339
340 // WARNING: Do not edit - generated code. 340 // WARNING: Do not edit - generated code.
341 341
342 interface AudioContext default _AudioContextFactoryProvider { 342 interface AudioContext extends EventTarget default _AudioContextFactoryProvider {
343 343
344 AudioContext(); 344 AudioContext();
345 345
346 final int activeSourceCount; 346 final int activeSourceCount;
347 347
348 final num currentTime; 348 final num currentTime;
349 349
350 final AudioDestinationNode destination; 350 final AudioDestinationNode destination;
351 351
352 final AudioListener listener; 352 final AudioListener listener;
353 353
354 EventListener oncomplete;
355
356 final num sampleRate; 354 final num sampleRate;
357 355
358 RealtimeAnalyserNode createAnalyser(); 356 RealtimeAnalyserNode createAnalyser();
359 357
360 BiquadFilterNode createBiquadFilter(); 358 BiquadFilterNode createBiquadFilter();
361 359
362 AudioBuffer createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_numb erOfFrames, [num sampleRate]); 360 AudioBuffer createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_numb erOfFrames, [num sampleRate]);
363 361
364 AudioBufferSourceNode createBufferSource(); 362 AudioBufferSourceNode createBufferSource();
365 363
(...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1992 void transaction(SQLTransactionSyncCallback callback); 1990 void transaction(SQLTransactionSyncCallback callback);
1993 } 1991 }
1994 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1995 // for details. All rights reserved. Use of this source code is governed by a 1993 // for details. All rights reserved. Use of this source code is governed by a
1996 // BSD-style license that can be found in the LICENSE file. 1994 // BSD-style license that can be found in the LICENSE file.
1997 1995
1998 // WARNING: Do not edit - generated code. 1996 // WARNING: Do not edit - generated code.
1999 1997
2000 interface DedicatedWorkerGlobalScope extends WorkerContext { 1998 interface DedicatedWorkerGlobalScope extends WorkerContext {
2001 1999
2002 EventListener onmessage;
2003
2004 void postMessage(Object message, [List messagePorts]); 2000 void postMessage(Object message, [List messagePorts]);
2005 2001
2006 void webkitPostMessage(Object message, [List transferList]); 2002 void webkitPostMessage(Object message, [List transferList]);
2007 } 2003 }
2008 2004
2009 interface DedicatedWorkerContext extends DedicatedWorkerGlobalScope { 2005 interface DedicatedWorkerContext extends DedicatedWorkerGlobalScope {
2010 } 2006 }
2011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2007 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2012 // for details. All rights reserved. Use of this source code is governed by a 2008 // for details. All rights reserved. Use of this source code is governed by a
2013 // BSD-style license that can be found in the LICENSE file. 2009 // BSD-style license that can be found in the LICENSE file.
2014 2010
2015 // WARNING: Do not edit - generated code. 2011 // WARNING: Do not edit - generated code.
2016 2012
2017 interface DelayNode extends AudioNode { 2013 interface DelayNode extends AudioNode {
2018 2014
2019 final AudioParam delayTime; 2015 final AudioParam delayTime;
2020 } 2016 }
2021 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2017 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2022 // for details. All rights reserved. Use of this source code is governed by a 2018 // for details. All rights reserved. Use of this source code is governed by a
2023 // BSD-style license that can be found in the LICENSE file. 2019 // BSD-style license that can be found in the LICENSE file.
2024 2020
2025 // WARNING: Do not edit - generated code. 2021 // WARNING: Do not edit - generated code.
2026 2022
2027 interface DeprecatedPeerConnection default _DeprecatedPeerConnectionFactoryProvi der { 2023 interface DeprecatedPeerConnection extends EventTarget default _DeprecatedPeerCo nnectionFactoryProvider {
2028 2024
2029 DeprecatedPeerConnection(String serverConfiguration, SignalingCallback signali ngCallback); 2025 DeprecatedPeerConnection(String serverConfiguration, SignalingCallback signali ngCallback);
2030 2026
2031 static final int ACTIVE = 2; 2027 static final int ACTIVE = 2;
2032 2028
2033 static final int CLOSED = 3; 2029 static final int CLOSED = 3;
2034 2030
2035 static final int NEGOTIATING = 1; 2031 static final int NEGOTIATING = 1;
2036 2032
2037 static final int NEW = 0; 2033 static final int NEW = 0;
2038 2034
2039 final MediaStreamList localStreams; 2035 final MediaStreamList localStreams;
2040 2036
2041 EventListener onaddstream;
2042
2043 EventListener onconnecting;
2044
2045 EventListener onmessage;
2046
2047 EventListener onopen;
2048
2049 EventListener onremovestream;
2050
2051 EventListener onstatechange;
2052
2053 final int readyState; 2037 final int readyState;
2054 2038
2055 final MediaStreamList remoteStreams; 2039 final MediaStreamList remoteStreams;
2056 2040
2057 void addEventListener(String type, EventListener listener, [bool useCapture]); 2041 void addEventListener(String type, EventListener listener, [bool useCapture]);
2058 2042
2059 void addStream(MediaStream stream); 2043 void addStream(MediaStream stream);
2060 2044
2061 void close(); 2045 void close();
2062 2046
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
2937 final int length; 2921 final int length;
2938 2922
2939 File item(int index); 2923 File item(int index);
2940 } 2924 }
2941 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2925 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2942 // for details. All rights reserved. Use of this source code is governed by a 2926 // for details. All rights reserved. Use of this source code is governed by a
2943 // BSD-style license that can be found in the LICENSE file. 2927 // BSD-style license that can be found in the LICENSE file.
2944 2928
2945 // WARNING: Do not edit - generated code. 2929 // WARNING: Do not edit - generated code.
2946 2930
2947 interface FileReader default _FileReaderFactoryProvider { 2931 interface FileReader extends EventTarget default _FileReaderFactoryProvider {
2948 2932
2949 FileReader(); 2933 FileReader();
2950 2934
2951 static final int DONE = 2; 2935 static final int DONE = 2;
2952 2936
2953 static final int EMPTY = 0; 2937 static final int EMPTY = 0;
2954 2938
2955 static final int LOADING = 1; 2939 static final int LOADING = 1;
2956 2940
2957 final FileError error; 2941 final FileError error;
2958 2942
2959 EventListener onabort;
2960
2961 EventListener onerror;
2962
2963 EventListener onload;
2964
2965 EventListener onloadend;
2966
2967 EventListener onloadstart;
2968
2969 EventListener onprogress;
2970
2971 final int readyState; 2943 final int readyState;
2972 2944
2973 final Object result; 2945 final Object result;
2974 2946
2975 void abort(); 2947 void abort();
2976 2948
2977 void addEventListener(String type, EventListener listener, [bool useCapture]); 2949 void addEventListener(String type, EventListener listener, [bool useCapture]);
2978 2950
2979 bool dispatchEvent(Event evt); 2951 bool dispatchEvent(Event evt);
2980 2952
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
3012 2984
3013 // WARNING: Do not edit - generated code. 2985 // WARNING: Do not edit - generated code.
3014 2986
3015 typedef bool FileSystemCallback(DOMFileSystem fileSystem); 2987 typedef bool FileSystemCallback(DOMFileSystem fileSystem);
3016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2988 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3017 // for details. All rights reserved. Use of this source code is governed by a 2989 // for details. All rights reserved. Use of this source code is governed by a
3018 // BSD-style license that can be found in the LICENSE file. 2990 // BSD-style license that can be found in the LICENSE file.
3019 2991
3020 // WARNING: Do not edit - generated code. 2992 // WARNING: Do not edit - generated code.
3021 2993
3022 interface FileWriter { 2994 interface FileWriter extends EventTarget {
3023 2995
3024 static final int DONE = 2; 2996 static final int DONE = 2;
3025 2997
3026 static final int INIT = 0; 2998 static final int INIT = 0;
3027 2999
3028 static final int WRITING = 1; 3000 static final int WRITING = 1;
3029 3001
3030 final FileError error; 3002 final FileError error;
3031 3003
3032 final int length; 3004 final int length;
3033 3005
3034 EventListener onabort;
3035
3036 EventListener onerror;
3037
3038 EventListener onprogress;
3039
3040 EventListener onwrite;
3041
3042 EventListener onwriteend;
3043
3044 EventListener onwritestart;
3045
3046 final int position; 3006 final int position;
3047 3007
3048 final int readyState; 3008 final int readyState;
3049 3009
3050 void abort(); 3010 void abort();
3051 3011
3052 void seek(int position); 3012 void seek(int position);
3053 3013
3054 void truncate(int size); 3014 void truncate(int size);
3055 3015
(...skipping 1579 matching lines...) Expand 10 before | Expand all | Expand 10 after
4635 // BSD-style license that can be found in the LICENSE file. 4595 // BSD-style license that can be found in the LICENSE file.
4636 4596
4637 // WARNING: Do not edit - generated code. 4597 // WARNING: Do not edit - generated code.
4638 4598
4639 interface HTMLStyleElement extends HTMLElement { 4599 interface HTMLStyleElement extends HTMLElement {
4640 4600
4641 bool disabled; 4601 bool disabled;
4642 4602
4643 String media; 4603 String media;
4644 4604
4605 bool scoped;
4606
4645 final StyleSheet sheet; 4607 final StyleSheet sheet;
4646 4608
4647 String type; 4609 String type;
4648 } 4610 }
4649 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4611 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4650 // for details. All rights reserved. Use of this source code is governed by a 4612 // for details. All rights reserved. Use of this source code is governed by a
4651 // BSD-style license that can be found in the LICENSE file. 4613 // BSD-style license that can be found in the LICENSE file.
4652 4614
4653 // WARNING: Do not edit - generated code. 4615 // WARNING: Do not edit - generated code.
4654 4616
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
5055 interface IDBCursorWithValue extends IDBCursor { 5017 interface IDBCursorWithValue extends IDBCursor {
5056 5018
5057 final IDBAny value; 5019 final IDBAny value;
5058 } 5020 }
5059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5021 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5060 // for details. All rights reserved. Use of this source code is governed by a 5022 // for details. All rights reserved. Use of this source code is governed by a
5061 // BSD-style license that can be found in the LICENSE file. 5023 // BSD-style license that can be found in the LICENSE file.
5062 5024
5063 // WARNING: Do not edit - generated code. 5025 // WARNING: Do not edit - generated code.
5064 5026
5065 interface IDBDatabase { 5027 interface IDBDatabase extends EventTarget {
5066 5028
5067 final String name; 5029 final String name;
5068 5030
5069 final List<String> objectStoreNames; 5031 final List<String> objectStoreNames;
5070 5032
5071 EventListener onabort;
5072
5073 EventListener onerror;
5074
5075 EventListener onversionchange;
5076
5077 final String version; 5033 final String version;
5078 5034
5079 void addEventListener(String type, EventListener listener, [bool useCapture]); 5035 void addEventListener(String type, EventListener listener, [bool useCapture]);
5080 5036
5081 void close(); 5037 void close();
5082 5038
5083 IDBObjectStore createObjectStore(String name); 5039 IDBObjectStore createObjectStore(String name);
5084 5040
5085 void deleteObjectStore(String name); 5041 void deleteObjectStore(String name);
5086 5042
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
5245 IDBRequest openCursor([IDBKeyRange range, int direction]); 5201 IDBRequest openCursor([IDBKeyRange range, int direction]);
5246 5202
5247 IDBRequest put(Dynamic value, [IDBKey key]); 5203 IDBRequest put(Dynamic value, [IDBKey key]);
5248 } 5204 }
5249 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5205 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5250 // for details. All rights reserved. Use of this source code is governed by a 5206 // for details. All rights reserved. Use of this source code is governed by a
5251 // BSD-style license that can be found in the LICENSE file. 5207 // BSD-style license that can be found in the LICENSE file.
5252 5208
5253 // WARNING: Do not edit - generated code. 5209 // WARNING: Do not edit - generated code.
5254 5210
5255 interface IDBRequest { 5211 interface IDBRequest extends EventTarget {
5256 5212
5257 static final int DONE = 2; 5213 static final int DONE = 2;
5258 5214
5259 static final int LOADING = 1; 5215 static final int LOADING = 1;
5260 5216
5261 final int errorCode; 5217 final int errorCode;
5262 5218
5263 EventListener onerror;
5264
5265 EventListener onsuccess;
5266
5267 final int readyState; 5219 final int readyState;
5268 5220
5269 final IDBAny result; 5221 final IDBAny result;
5270 5222
5271 final IDBAny source; 5223 final IDBAny source;
5272 5224
5273 final IDBTransaction transaction; 5225 final IDBTransaction transaction;
5274 5226
5275 final String webkitErrorMessage; 5227 final String webkitErrorMessage;
5276 5228
5277 void addEventListener(String type, EventListener listener, [bool useCapture]); 5229 void addEventListener(String type, EventListener listener, [bool useCapture]);
5278 5230
5279 bool dispatchEvent(Event evt); 5231 bool dispatchEvent(Event evt);
5280 5232
5281 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5233 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5282 } 5234 }
5283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5235 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5284 // for details. All rights reserved. Use of this source code is governed by a 5236 // for details. All rights reserved. Use of this source code is governed by a
5285 // BSD-style license that can be found in the LICENSE file. 5237 // BSD-style license that can be found in the LICENSE file.
5286 5238
5287 // WARNING: Do not edit - generated code. 5239 // WARNING: Do not edit - generated code.
5288 5240
5289 interface IDBTransaction { 5241 interface IDBTransaction extends EventTarget {
5290 5242
5291 static final int READ_ONLY = 0; 5243 static final int READ_ONLY = 0;
5292 5244
5293 static final int READ_WRITE = 1; 5245 static final int READ_WRITE = 1;
5294 5246
5295 static final int VERSION_CHANGE = 2; 5247 static final int VERSION_CHANGE = 2;
5296 5248
5297 final IDBDatabase db; 5249 final IDBDatabase db;
5298 5250
5299 final int mode; 5251 final int mode;
5300 5252
5301 EventListener onabort;
5302
5303 EventListener oncomplete;
5304
5305 EventListener onerror;
5306
5307 void abort(); 5253 void abort();
5308 5254
5309 void addEventListener(String type, EventListener listener, [bool useCapture]); 5255 void addEventListener(String type, EventListener listener, [bool useCapture]);
5310 5256
5311 bool dispatchEvent(Event evt); 5257 bool dispatchEvent(Event evt);
5312 5258
5313 IDBObjectStore objectStore(String name); 5259 IDBObjectStore objectStore(String name);
5314 5260
5315 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5261 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5316 } 5262 }
5317 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5318 // for details. All rights reserved. Use of this source code is governed by a 5264 // for details. All rights reserved. Use of this source code is governed by a
5319 // BSD-style license that can be found in the LICENSE file. 5265 // BSD-style license that can be found in the LICENSE file.
5320 5266
5321 // WARNING: Do not edit - generated code. 5267 // WARNING: Do not edit - generated code.
5322 5268
5323 interface IDBVersionChangeEvent extends Event { 5269 interface IDBVersionChangeEvent extends Event {
5324 5270
5325 final String version; 5271 final String version;
5326 } 5272 }
5327 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5328 // for details. All rights reserved. Use of this source code is governed by a 5274 // for details. All rights reserved. Use of this source code is governed by a
5329 // BSD-style license that can be found in the LICENSE file. 5275 // BSD-style license that can be found in the LICENSE file.
5330 5276
5331 // WARNING: Do not edit - generated code. 5277 // WARNING: Do not edit - generated code.
5332 5278
5333 interface IDBVersionChangeRequest extends IDBRequest { 5279 interface IDBVersionChangeRequest extends IDBRequest, EventTarget {
5334
5335 EventListener onblocked;
5336 } 5280 }
5337 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 5281 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5338 // for details. All rights reserved. Use of this source code is governed by a 5282 // for details. All rights reserved. Use of this source code is governed by a
5339 // BSD-style license that can be found in the LICENSE file. 5283 // BSD-style license that can be found in the LICENSE file.
5340 5284
5341 // WARNING: Do not edit - generated code. 5285 // WARNING: Do not edit - generated code.
5342 5286
5343 typedef bool IceCallback(IceCandidate candidate, bool moreToFollow, PeerConnecti on00 source); 5287 typedef bool IceCallback(IceCandidate candidate, bool moreToFollow, PeerConnecti on00 source);
5344 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5288 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5345 // for details. All rights reserved. Use of this source code is governed by a 5289 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
5434 void setElements(Object array, [int offset]); 5378 void setElements(Object array, [int offset]);
5435 5379
5436 Int8Array subarray(int start, [int end]); 5380 Int8Array subarray(int start, [int end]);
5437 } 5381 }
5438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5439 // for details. All rights reserved. Use of this source code is governed by a 5383 // for details. All rights reserved. Use of this source code is governed by a
5440 // BSD-style license that can be found in the LICENSE file. 5384 // BSD-style license that can be found in the LICENSE file.
5441 5385
5442 // WARNING: Do not edit - generated code. 5386 // WARNING: Do not edit - generated code.
5443 5387
5444 interface JavaScriptAudioNode extends AudioNode { 5388 interface JavaScriptAudioNode extends AudioNode, EventTarget {
5445 5389
5446 final int bufferSize; 5390 final int bufferSize;
5447
5448 EventListener onaudioprocess;
5449 } 5391 }
5450 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5392 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5451 // for details. All rights reserved. Use of this source code is governed by a 5393 // for details. All rights reserved. Use of this source code is governed by a
5452 // BSD-style license that can be found in the LICENSE file. 5394 // BSD-style license that can be found in the LICENSE file.
5453 5395
5454 // WARNING: Do not edit - generated code. 5396 // WARNING: Do not edit - generated code.
5455 5397
5456 interface JavaScriptCallFrame { 5398 interface JavaScriptCallFrame {
5457 5399
5458 static final int CATCH_SCOPE = 4; 5400 static final int CATCH_SCOPE = 4;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
5508 final bool shiftKey; 5450 final bool shiftKey;
5509 5451
5510 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); 5452 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);
5511 } 5453 }
5512 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5454 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5513 // for details. All rights reserved. Use of this source code is governed by a 5455 // for details. All rights reserved. Use of this source code is governed by a
5514 // BSD-style license that can be found in the LICENSE file. 5456 // BSD-style license that can be found in the LICENSE file.
5515 5457
5516 // WARNING: Do not edit - generated code. 5458 // WARNING: Do not edit - generated code.
5517 5459
5518 interface LocalMediaStream extends MediaStream { 5460 interface LocalMediaStream extends MediaStream, EventTarget {
5519 5461
5520 void stop(); 5462 void stop();
5521 } 5463 }
5522 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5464 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5523 // for details. All rights reserved. Use of this source code is governed by a 5465 // for details. All rights reserved. Use of this source code is governed by a
5524 // BSD-style license that can be found in the LICENSE file. 5466 // BSD-style license that can be found in the LICENSE file.
5525 5467
5526 // WARNING: Do not edit - generated code. 5468 // WARNING: Do not edit - generated code.
5527 5469
5528 interface Location { 5470 interface Location {
(...skipping 23 matching lines...) Expand all
5552 void replace(String url); 5494 void replace(String url);
5553 5495
5554 String toString(); 5496 String toString();
5555 } 5497 }
5556 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5498 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5557 // for details. All rights reserved. Use of this source code is governed by a 5499 // for details. All rights reserved. Use of this source code is governed by a
5558 // BSD-style license that can be found in the LICENSE file. 5500 // BSD-style license that can be found in the LICENSE file.
5559 5501
5560 // WARNING: Do not edit - generated code. 5502 // WARNING: Do not edit - generated code.
5561 5503
5562 interface MediaController default _MediaControllerFactoryProvider { 5504 interface MediaController extends EventTarget default _MediaControllerFactoryPro vider {
5563 5505
5564 MediaController(); 5506 MediaController();
5565 5507
5566 final TimeRanges buffered; 5508 final TimeRanges buffered;
5567 5509
5568 num currentTime; 5510 num currentTime;
5569 5511
5570 num defaultPlaybackRate; 5512 num defaultPlaybackRate;
5571 5513
5572 final num duration; 5514 final num duration;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
5664 interface MediaQueryListListener { 5606 interface MediaQueryListListener {
5665 5607
5666 void queryChanged(MediaQueryList list); 5608 void queryChanged(MediaQueryList list);
5667 } 5609 }
5668 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5610 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5669 // for details. All rights reserved. Use of this source code is governed by a 5611 // for details. All rights reserved. Use of this source code is governed by a
5670 // BSD-style license that can be found in the LICENSE file. 5612 // BSD-style license that can be found in the LICENSE file.
5671 5613
5672 // WARNING: Do not edit - generated code. 5614 // WARNING: Do not edit - generated code.
5673 5615
5674 interface MediaStream default _MediaStreamFactoryProvider { 5616 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider {
5675 5617
5676 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks ); 5618 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks );
5677 5619
5678 static final int ENDED = 2; 5620 static final int ENDED = 2;
5679 5621
5680 static final int LIVE = 1; 5622 static final int LIVE = 1;
5681 5623
5682 final MediaStreamTrackList audioTracks; 5624 final MediaStreamTrackList audioTracks;
5683 5625
5684 final String label; 5626 final String label;
5685 5627
5686 EventListener onended;
5687
5688 final int readyState; 5628 final int readyState;
5689 5629
5690 final MediaStreamTrackList videoTracks; 5630 final MediaStreamTrackList videoTracks;
5691 5631
5692 void addEventListener(String type, EventListener listener, [bool useCapture]); 5632 void addEventListener(String type, EventListener listener, [bool useCapture]);
5693 5633
5694 bool dispatchEvent(Event event); 5634 bool dispatchEvent(Event event);
5695 5635
5696 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5636 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5697 } 5637 }
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
5865 final EventTarget relatedTarget; 5805 final EventTarget relatedTarget;
5866 5806
5867 final int screenX; 5807 final int screenX;
5868 5808
5869 final int screenY; 5809 final int screenY;
5870 5810
5871 final bool shiftKey; 5811 final bool shiftKey;
5872 5812
5873 final Node toElement; 5813 final Node toElement;
5874 5814
5815 final int webkitMovementX;
5816
5817 final int webkitMovementY;
5818
5875 final int x; 5819 final int x;
5876 5820
5877 final int y; 5821 final int y;
5878 5822
5879 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); 5823 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);
5880 } 5824 }
5881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5825 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5882 // for details. All rights reserved. Use of this source code is governed by a 5826 // for details. All rights reserved. Use of this source code is governed by a
5883 // BSD-style license that can be found in the LICENSE file. 5827 // BSD-style license that can be found in the LICENSE file.
5884 5828
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
5993 final String product; 5937 final String product;
5994 5938
5995 final String productSub; 5939 final String productSub;
5996 5940
5997 final String userAgent; 5941 final String userAgent;
5998 5942
5999 final String vendor; 5943 final String vendor;
6000 5944
6001 final String vendorSub; 5945 final String vendorSub;
6002 5946
5947 final PointerLock webkitPointer;
5948
6003 void getStorageUpdates(); 5949 void getStorageUpdates();
6004 5950
6005 bool javaEnabled(); 5951 bool javaEnabled();
6006 5952
6007 void registerProtocolHandler(String scheme, String url, String title); 5953 void registerProtocolHandler(String scheme, String url, String title);
6008 5954
6009 void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback succ essCallback, [NavigatorUserMediaErrorCallback errorCallback]); 5955 void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback succ essCallback, [NavigatorUserMediaErrorCallback errorCallback]);
6010 } 5956 }
6011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5957 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6012 // for details. All rights reserved. Use of this source code is governed by a 5958 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
6257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6203 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6258 // for details. All rights reserved. Use of this source code is governed by a 6204 // for details. All rights reserved. Use of this source code is governed by a
6259 // BSD-style license that can be found in the LICENSE file. 6205 // BSD-style license that can be found in the LICENSE file.
6260 6206
6261 // WARNING: Do not edit - generated code. 6207 // WARNING: Do not edit - generated code.
6262 6208
6263 interface Notification extends EventTarget { 6209 interface Notification extends EventTarget {
6264 6210
6265 String dir; 6211 String dir;
6266 6212
6213 String replaceId;
6214
6267 String tag; 6215 String tag;
6268 6216
6269 void addEventListener(String type, EventListener listener, [bool useCapture]); 6217 void addEventListener(String type, EventListener listener, [bool useCapture]);
6270 6218
6219 void cancel();
6220
6271 void close(); 6221 void close();
6272 6222
6273 bool dispatchEvent(Event evt); 6223 bool dispatchEvent(Event evt);
6274 6224
6275 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 6225 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
6276 6226
6277 void show(); 6227 void show();
6278 } 6228 }
6279 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6280 // for details. All rights reserved. Use of this source code is governed by a 6230 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
6411 interface PageTransitionEvent extends Event { 6361 interface PageTransitionEvent extends Event {
6412 6362
6413 final bool persisted; 6363 final bool persisted;
6414 } 6364 }
6415 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6365 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6416 // for details. All rights reserved. Use of this source code is governed by a 6366 // for details. All rights reserved. Use of this source code is governed by a
6417 // BSD-style license that can be found in the LICENSE file. 6367 // BSD-style license that can be found in the LICENSE file.
6418 6368
6419 // WARNING: Do not edit - generated code. 6369 // WARNING: Do not edit - generated code.
6420 6370
6421 interface PeerConnection00 default _PeerConnection00FactoryProvider { 6371 interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP rovider {
6422 6372
6423 PeerConnection00(String serverConfiguration, IceCallback iceCallback); 6373 PeerConnection00(String serverConfiguration, IceCallback iceCallback);
6424 6374
6425 static final int ACTIVE = 2; 6375 static final int ACTIVE = 2;
6426 6376
6427 static final int CLOSED = 3; 6377 static final int CLOSED = 3;
6428 6378
6429 static final int ICE_CHECKING = 0x300; 6379 static final int ICE_CHECKING = 0x300;
6430 6380
6431 static final int ICE_CLOSED = 0x700; 6381 static final int ICE_CLOSED = 0x700;
(...skipping 17 matching lines...) Expand all
6449 static final int SDP_OFFER = 0x100; 6399 static final int SDP_OFFER = 0x100;
6450 6400
6451 static final int SDP_PRANSWER = 0x200; 6401 static final int SDP_PRANSWER = 0x200;
6452 6402
6453 final int iceState; 6403 final int iceState;
6454 6404
6455 final SessionDescription localDescription; 6405 final SessionDescription localDescription;
6456 6406
6457 final MediaStreamList localStreams; 6407 final MediaStreamList localStreams;
6458 6408
6459 EventListener onaddstream;
6460
6461 EventListener onconnecting;
6462
6463 EventListener onopen;
6464
6465 EventListener onremovestream;
6466
6467 EventListener onstatechange;
6468
6469 final int readyState; 6409 final int readyState;
6470 6410
6471 final SessionDescription remoteDescription; 6411 final SessionDescription remoteDescription;
6472 6412
6473 final MediaStreamList remoteStreams; 6413 final MediaStreamList remoteStreams;
6474 6414
6475 void addEventListener(String type, EventListener listener, [bool useCapture]); 6415 void addEventListener(String type, EventListener listener, [bool useCapture]);
6476 6416
6477 void addStream(MediaStream stream, [String mediaStreamHints]); 6417 void addStream(MediaStream stream, [String mediaStreamHints]);
6478 6418
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
6579 final int unloadEventEnd; 6519 final int unloadEventEnd;
6580 6520
6581 final int unloadEventStart; 6521 final int unloadEventStart;
6582 } 6522 }
6583 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6523 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6584 // for details. All rights reserved. Use of this source code is governed by a 6524 // for details. All rights reserved. Use of this source code is governed by a
6585 // BSD-style license that can be found in the LICENSE file. 6525 // BSD-style license that can be found in the LICENSE file.
6586 6526
6587 // WARNING: Do not edit - generated code. 6527 // WARNING: Do not edit - generated code.
6588 6528
6529 interface PointerLock {
6530
6531 final bool isLocked;
6532
6533 void lock(Element target, [VoidCallback successCallback, VoidCallback failureC allback]);
6534
6535 void unlock();
6536 }
6537 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6538 // for details. All rights reserved. Use of this source code is governed by a
6539 // BSD-style license that can be found in the LICENSE file.
6540
6541 // WARNING: Do not edit - generated code.
6542
6589 interface PopStateEvent extends Event { 6543 interface PopStateEvent extends Event {
6590 6544
6591 final Object state; 6545 final Object state;
6592 } 6546 }
6593 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 6547 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6594 // for details. All rights reserved. Use of this source code is governed by a 6548 // for details. All rights reserved. Use of this source code is governed by a
6595 // BSD-style license that can be found in the LICENSE file. 6549 // BSD-style license that can be found in the LICENSE file.
6596 6550
6597 // WARNING: Do not edit - generated code. 6551 // WARNING: Do not edit - generated code.
6598 6552
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
7349 final SVGElement viewportElement; 7303 final SVGElement viewportElement;
7350 7304
7351 String xmlbase; 7305 String xmlbase;
7352 } 7306 }
7353 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7307 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7354 // for details. All rights reserved. Use of this source code is governed by a 7308 // for details. All rights reserved. Use of this source code is governed by a
7355 // BSD-style license that can be found in the LICENSE file. 7309 // BSD-style license that can be found in the LICENSE file.
7356 7310
7357 // WARNING: Do not edit - generated code. 7311 // WARNING: Do not edit - generated code.
7358 7312
7359 interface SVGElementInstance extends EventTarget { 7313 interface SVGElementInstance {
7360 7314
7361 final SVGElementInstanceList childNodes; 7315 final SVGElementInstanceList childNodes;
7362 7316
7363 final SVGElement correspondingElement; 7317 final SVGElement correspondingElement;
7364 7318
7365 final SVGUseElement correspondingUseElement; 7319 final SVGUseElement correspondingUseElement;
7366 7320
7367 final SVGElementInstance firstChild; 7321 final SVGElementInstance firstChild;
7368 7322
7369 final SVGElementInstance lastChild; 7323 final SVGElementInstance lastChild;
(...skipping 2252 matching lines...) Expand 10 before | Expand all | Expand 10 after
9622 } 9576 }
9623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9624 // for details. All rights reserved. Use of this source code is governed by a 9578 // for details. All rights reserved. Use of this source code is governed by a
9625 // BSD-style license that can be found in the LICENSE file. 9579 // BSD-style license that can be found in the LICENSE file.
9626 9580
9627 // WARNING: Do not edit - generated code. 9581 // WARNING: Do not edit - generated code.
9628 9582
9629 interface SharedWorkerGlobalScope extends WorkerContext { 9583 interface SharedWorkerGlobalScope extends WorkerContext {
9630 9584
9631 final String name; 9585 final String name;
9632
9633 EventListener onconnect;
9634 } 9586 }
9635 9587
9636 interface SharedWorkerContext extends SharedWorkerGlobalScope { 9588 interface SharedWorkerContext extends SharedWorkerGlobalScope {
9637 } 9589 }
9638 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 9590 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
9639 // for details. All rights reserved. Use of this source code is governed by a 9591 // for details. All rights reserved. Use of this source code is governed by a
9640 // BSD-style license that can be found in the LICENSE file. 9592 // BSD-style license that can be found in the LICENSE file.
9641 9593
9642 // WARNING: Do not edit - generated code. 9594 // WARNING: Do not edit - generated code.
9643 9595
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
9707 final int length; 9659 final int length;
9708 9660
9709 SpeechInputResult item(int index); 9661 SpeechInputResult item(int index);
9710 } 9662 }
9711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9663 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9712 // for details. All rights reserved. Use of this source code is governed by a 9664 // for details. All rights reserved. Use of this source code is governed by a
9713 // BSD-style license that can be found in the LICENSE file. 9665 // BSD-style license that can be found in the LICENSE file.
9714 9666
9715 // WARNING: Do not edit - generated code. 9667 // WARNING: Do not edit - generated code.
9716 9668
9717 interface SpeechRecognition default _SpeechRecognitionFactoryProvider { 9669 interface SpeechRecognition extends EventTarget default _SpeechRecognitionFactor yProvider {
9718 9670
9719 SpeechRecognition(); 9671 SpeechRecognition();
9720 9672
9721 bool continuous; 9673 bool continuous;
9722 9674
9723 SpeechGrammarList grammars; 9675 SpeechGrammarList grammars;
9724 9676
9725 String lang; 9677 String lang;
9726 9678
9727 EventListener onaudioend;
9728
9729 EventListener onaudiostart;
9730
9731 EventListener onend;
9732
9733 EventListener onerror;
9734
9735 EventListener onnomatch;
9736
9737 EventListener onresult;
9738
9739 EventListener onresultdeleted;
9740
9741 EventListener onsoundend;
9742
9743 EventListener onsoundstart;
9744
9745 EventListener onspeechend;
9746
9747 EventListener onspeechstart;
9748
9749 EventListener onstart;
9750
9751 void abort(); 9679 void abort();
9752 9680
9753 void start(); 9681 void start();
9754 9682
9755 void stop(); 9683 void stop();
9756 } 9684 }
9757 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9685 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9758 // for details. All rights reserved. Use of this source code is governed by a 9686 // for details. All rights reserved. Use of this source code is governed by a
9759 // BSD-style license that can be found in the LICENSE file. 9687 // BSD-style license that can be found in the LICENSE file.
9760 9688
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
10003 interface TextMetrics { 9931 interface TextMetrics {
10004 9932
10005 final num width; 9933 final num width;
10006 } 9934 }
10007 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9935 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10008 // for details. All rights reserved. Use of this source code is governed by a 9936 // for details. All rights reserved. Use of this source code is governed by a
10009 // BSD-style license that can be found in the LICENSE file. 9937 // BSD-style license that can be found in the LICENSE file.
10010 9938
10011 // WARNING: Do not edit - generated code. 9939 // WARNING: Do not edit - generated code.
10012 9940
10013 interface TextTrack { 9941 interface TextTrack extends EventTarget {
10014 9942
10015 static final int DISABLED = 0; 9943 static final int DISABLED = 0;
10016 9944
10017 static final int HIDDEN = 1; 9945 static final int HIDDEN = 1;
10018 9946
10019 static final int SHOWING = 2; 9947 static final int SHOWING = 2;
10020 9948
10021 final TextTrackCueList activeCues; 9949 final TextTrackCueList activeCues;
10022 9950
10023 final TextTrackCueList cues; 9951 final TextTrackCueList cues;
10024 9952
10025 final String kind; 9953 final String kind;
10026 9954
10027 final String label; 9955 final String label;
10028 9956
10029 final String language; 9957 final String language;
10030 9958
10031 int mode; 9959 int mode;
10032 9960
10033 EventListener oncuechange;
10034
10035 void addCue(TextTrackCue cue); 9961 void addCue(TextTrackCue cue);
10036 9962
10037 void addEventListener(String type, EventListener listener, [bool useCapture]); 9963 void addEventListener(String type, EventListener listener, [bool useCapture]);
10038 9964
10039 bool dispatchEvent(Event evt); 9965 bool dispatchEvent(Event evt);
10040 9966
10041 void removeCue(TextTrackCue cue); 9967 void removeCue(TextTrackCue cue);
10042 9968
10043 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 9969 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
10044 } 9970 }
10045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9971 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10046 // for details. All rights reserved. Use of this source code is governed by a 9972 // for details. All rights reserved. Use of this source code is governed by a
10047 // BSD-style license that can be found in the LICENSE file. 9973 // BSD-style license that can be found in the LICENSE file.
10048 9974
10049 // WARNING: Do not edit - generated code. 9975 // WARNING: Do not edit - generated code.
10050 9976
10051 interface TextTrackCue default _TextTrackCueFactoryProvider { 9977 interface TextTrackCue extends EventTarget default _TextTrackCueFactoryProvider {
10052 9978
10053 TextTrackCue(String id, num startTime, num endTime, String text, [String setti ngs, bool pauseOnExit]); 9979 TextTrackCue(String id, num startTime, num endTime, String text, [String setti ngs, bool pauseOnExit]);
10054 9980
10055 String align; 9981 String align;
10056 9982
10057 num endTime; 9983 num endTime;
10058 9984
10059 String id; 9985 String id;
10060 9986
10061 int line; 9987 int line;
10062 9988
10063 EventListener onenter;
10064
10065 EventListener onexit;
10066
10067 bool pauseOnExit; 9989 bool pauseOnExit;
10068 9990
10069 int position; 9991 int position;
10070 9992
10071 int size; 9993 int size;
10072 9994
10073 bool snapToLines; 9995 bool snapToLines;
10074 9996
10075 num startTime; 9997 num startTime;
10076 9998
(...skipping 24 matching lines...) Expand all
10101 TextTrackCue getCueById(String id); 10023 TextTrackCue getCueById(String id);
10102 10024
10103 TextTrackCue item(int index); 10025 TextTrackCue item(int index);
10104 } 10026 }
10105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10027 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10106 // for details. All rights reserved. Use of this source code is governed by a 10028 // for details. All rights reserved. Use of this source code is governed by a
10107 // BSD-style license that can be found in the LICENSE file. 10029 // BSD-style license that can be found in the LICENSE file.
10108 10030
10109 // WARNING: Do not edit - generated code. 10031 // WARNING: Do not edit - generated code.
10110 10032
10111 interface TextTrackList { 10033 interface TextTrackList extends EventTarget {
10112 10034
10113 final int length; 10035 final int length;
10114 10036
10115 EventListener onaddtrack;
10116
10117 void addEventListener(String type, EventListener listener, [bool useCapture]); 10037 void addEventListener(String type, EventListener listener, [bool useCapture]);
10118 10038
10119 bool dispatchEvent(Event evt); 10039 bool dispatchEvent(Event evt);
10120 10040
10121 TextTrack item(int index); 10041 TextTrack item(int index);
10122 10042
10123 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 10043 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
10124 } 10044 }
10125 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10126 // for details. All rights reserved. Use of this source code is governed by a 10046 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
11545 void append(var arrayBuffer_OR_blob_OR_value, [String endings]); 11465 void append(var arrayBuffer_OR_blob_OR_value, [String endings]);
11546 11466
11547 Blob getBlob([String contentType]); 11467 Blob getBlob([String contentType]);
11548 } 11468 }
11549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11469 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11550 // for details. All rights reserved. Use of this source code is governed by a 11470 // for details. All rights reserved. Use of this source code is governed by a
11551 // BSD-style license that can be found in the LICENSE file. 11471 // BSD-style license that can be found in the LICENSE file.
11552 11472
11553 // WARNING: Do not edit - generated code. 11473 // WARNING: Do not edit - generated code.
11554 11474
11475 interface WebKitCSSFilterValue extends CSSValueList {
11476
11477 static final int CSS_FILTER_BLUR = 10;
11478
11479 static final int CSS_FILTER_BRIGHTNESS = 8;
11480
11481 static final int CSS_FILTER_CONTRAST = 9;
11482
11483 static final int CSS_FILTER_CUSTOM = 12;
11484
11485 static final int CSS_FILTER_DROP_SHADOW = 11;
11486
11487 static final int CSS_FILTER_GRAYSCALE = 2;
11488
11489 static final int CSS_FILTER_HUE_ROTATE = 5;
11490
11491 static final int CSS_FILTER_INVERT = 6;
11492
11493 static final int CSS_FILTER_OPACITY = 7;
11494
11495 static final int CSS_FILTER_REFERENCE = 1;
11496
11497 static final int CSS_FILTER_SATURATE = 4;
11498
11499 static final int CSS_FILTER_SEPIA = 3;
11500
11501 final int operationType;
11502 }
11503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11504 // for details. All rights reserved. Use of this source code is governed by a
11505 // BSD-style license that can be found in the LICENSE file.
11506
11507 // WARNING: Do not edit - generated code.
11508
11555 interface WebKitCSSKeyframeRule extends CSSRule { 11509 interface WebKitCSSKeyframeRule extends CSSRule {
11556 11510
11557 String keyText; 11511 String keyText;
11558 11512
11559 final CSSStyleDeclaration style; 11513 final CSSStyleDeclaration style;
11560 } 11514 }
11561 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11562 // for details. All rights reserved. Use of this source code is governed by a 11516 // for details. All rights reserved. Use of this source code is governed by a
11563 // BSD-style license that can be found in the LICENSE file. 11517 // BSD-style license that can be found in the LICENSE file.
11564 11518
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
11861 void terminate(); 11815 void terminate();
11862 11816
11863 void webkitPostMessage(Dynamic message, [List messagePorts]); 11817 void webkitPostMessage(Dynamic message, [List messagePorts]);
11864 } 11818 }
11865 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11866 // for details. All rights reserved. Use of this source code is governed by a 11820 // for details. All rights reserved. Use of this source code is governed by a
11867 // BSD-style license that can be found in the LICENSE file. 11821 // BSD-style license that can be found in the LICENSE file.
11868 11822
11869 // WARNING: Do not edit - generated code. 11823 // WARNING: Do not edit - generated code.
11870 11824
11871 interface WorkerGlobalScope { 11825 interface WorkerGlobalScope extends EventTarget {
11872 11826
11873 final WorkerLocation location; 11827 final WorkerLocation location;
11874 11828
11875 final WorkerNavigator navigator; 11829 final WorkerNavigator navigator;
11876 11830
11877 EventListener onerror;
11878
11879 final WorkerContext self; 11831 final WorkerContext self;
11880 11832
11881 final IDBFactory webkitIndexedDB; 11833 final IDBFactory webkitIndexedDB;
11882 11834
11883 final NotificationCenter webkitNotifications; 11835 final NotificationCenter webkitNotifications;
11884 11836
11885 void addEventListener(String type, EventListener listener, [bool useCapture]); 11837 void addEventListener(String type, EventListener listener, [bool useCapture]);
11886 11838
11887 void clearInterval(int handle); 11839 void clearInterval(int handle);
11888 11840
(...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after
12853 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12805 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12854 // for details. All rights reserved. Use of this source code is governed by a 12806 // for details. All rights reserved. Use of this source code is governed by a
12855 // BSD-style license that can be found in the LICENSE file. 12807 // BSD-style license that can be found in the LICENSE file.
12856 12808
12857 Window get window() => _dummy(); 12809 Window get window() => _dummy();
12858 12810
12859 // TODO(vsm): Remove when prefixes are supported. 12811 // TODO(vsm): Remove when prefixes are supported.
12860 Window get dom_window() => _dummy(); 12812 Window get dom_window() => _dummy();
12861 12813
12862 Document get document() => _dummy(); 12814 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/scripts/fremontcutbuilder.py » ('j') | lib/dom/scripts/fremontcutbuilder.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698