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

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

Issue 10800016: Roll IDL to multivm@707 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 6003 matching lines...) Expand 10 before | Expand all | Expand 10 after
6014 final int y; 6014 final int y;
6015 6015
6016 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); 6016 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);
6017 } 6017 }
6018 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6018 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6019 // for details. All rights reserved. Use of this source code is governed by a 6019 // for details. All rights reserved. Use of this source code is governed by a
6020 // BSD-style license that can be found in the LICENSE file. 6020 // BSD-style license that can be found in the LICENSE file.
6021 6021
6022 // WARNING: Do not edit - generated code. 6022 // WARNING: Do not edit - generated code.
6023 6023
6024 typedef bool MutationCallback(List<MutationRecord> mutations, WebKitMutationObse rver observer); 6024 typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver o bserver);
6025 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6025 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6026 // for details. All rights reserved. Use of this source code is governed by a 6026 // for details. All rights reserved. Use of this source code is governed by a
6027 // BSD-style license that can be found in the LICENSE file. 6027 // BSD-style license that can be found in the LICENSE file.
6028 6028
6029 // WARNING: Do not edit - generated code. 6029 // WARNING: Do not edit - generated code.
6030 6030
6031 interface MutationEvent extends Event { 6031 interface MutationEvent extends Event {
6032 6032
6033 static final int ADDITION = 2; 6033 static final int ADDITION = 2;
6034 6034
(...skipping 12 matching lines...) Expand all
6047 final Node relatedNode; 6047 final Node relatedNode;
6048 6048
6049 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange); 6049 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange);
6050 } 6050 }
6051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6052 // for details. All rights reserved. Use of this source code is governed by a 6052 // for details. All rights reserved. Use of this source code is governed by a
6053 // BSD-style license that can be found in the LICENSE file. 6053 // BSD-style license that can be found in the LICENSE file.
6054 6054
6055 // WARNING: Do not edit - generated code. 6055 // WARNING: Do not edit - generated code.
6056 6056
6057 interface MutationObserver {
6058
6059 void disconnect();
6060
6061 void observe(Node target, Map options);
6062
6063 List<MutationRecord> takeRecords();
6064 }
6065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6066 // for details. All rights reserved. Use of this source code is governed by a
6067 // BSD-style license that can be found in the LICENSE file.
6068
6069 // WARNING: Do not edit - generated code.
6070
6057 interface MutationRecord { 6071 interface MutationRecord {
6058 6072
6059 final NodeList addedNodes; 6073 final NodeList addedNodes;
6060 6074
6061 final String attributeName; 6075 final String attributeName;
6062 6076
6063 final String attributeNamespace; 6077 final String attributeNamespace;
6064 6078
6065 final Node nextSibling; 6079 final Node nextSibling;
6066 6080
(...skipping 5774 matching lines...) Expand 10 before | Expand all | Expand 10 after
11841 static final int CSS_TRANSLATEZ = 12; 11855 static final int CSS_TRANSLATEZ = 12;
11842 11856
11843 final int operationType; 11857 final int operationType;
11844 } 11858 }
11845 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11846 // for details. All rights reserved. Use of this source code is governed by a 11860 // for details. All rights reserved. Use of this source code is governed by a
11847 // BSD-style license that can be found in the LICENSE file. 11861 // BSD-style license that can be found in the LICENSE file.
11848 11862
11849 // WARNING: Do not edit - generated code. 11863 // WARNING: Do not edit - generated code.
11850 11864
11851 interface WebKitMutationObserver {
11852
11853 void disconnect();
11854
11855 void observe(Node target, Map options);
11856
11857 List<MutationRecord> takeRecords();
11858 }
11859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11860 // for details. All rights reserved. Use of this source code is governed by a
11861 // BSD-style license that can be found in the LICENSE file.
11862
11863 // WARNING: Do not edit - generated code.
11864
11865 interface WebKitNamedFlow { 11865 interface WebKitNamedFlow {
11866 11866
11867 final int firstEmptyRegionIndex;
11868
11867 final String name; 11869 final String name;
11868 11870
11869 final bool overset; 11871 final bool overset;
11870 11872
11871 NodeList getContent(); 11873 NodeList getContent();
11872 11874
11873 NodeList getRegionsByContentNode(Node contentNode); 11875 NodeList getRegionsByContent(Node contentNode);
11874 } 11876 }
11875 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11876 // for details. All rights reserved. Use of this source code is governed by a 11878 // for details. All rights reserved. Use of this source code is governed by a
11877 // BSD-style license that can be found in the LICENSE file. 11879 // BSD-style license that can be found in the LICENSE file.
11878 11880
11879 // WARNING: Do not edit - generated code. 11881 // WARNING: Do not edit - generated code.
11880 11882
11881 interface WebKitPoint default _WebKitPointFactoryProvider { 11883 interface WebKitPoint default _WebKitPointFactoryProvider {
11882 11884
11883 WebKitPoint(num x, num y); 11885 WebKitPoint(num x, num y);
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
12968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12969 // for details. All rights reserved. Use of this source code is governed by a 12971 // for details. All rights reserved. Use of this source code is governed by a
12970 // BSD-style license that can be found in the LICENSE file. 12972 // BSD-style license that can be found in the LICENSE file.
12971 12973
12972 Window get window() => _dummy(); 12974 Window get window() => _dummy();
12973 12975
12974 // TODO(vsm): Remove when prefixes are supported. 12976 // TODO(vsm): Remove when prefixes are supported.
12975 Window get dom_window() => _dummy(); 12977 Window get dom_window() => _dummy();
12976 12978
12977 Document get document() => _dummy(); 12979 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