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

Unified Diff: lib/dom/frog/dom_frog.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index c5836eec517651124bea88bb216d999043c872ac..c565c996d868d3ae749f7535cb35b12a4fd204d9 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -5251,6 +5251,15 @@ class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati
void initMutationEvent(String type, bool canBubble, bool cancelable, _NodeJs relatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
}
+class _MutationObserverJs extends _DOMTypeJs implements MutationObserver native "*MutationObserver" {
+
+ void disconnect() native;
+
+ void observe(_NodeJs target, Map options) native;
+
+ List<MutationRecord> takeRecords() native;
+}
+
class _MutationRecordJs extends _DOMTypeJs implements MutationRecord native "*MutationRecord" {
final _NodeListJs addedNodes;
@@ -11578,24 +11587,17 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
final int operationType;
}
-class _WebKitMutationObserverJs extends _DOMTypeJs implements WebKitMutationObserver native "*WebKitMutationObserver" {
-
- void disconnect() native;
-
- void observe(_NodeJs target, Map options) native;
-
- List<MutationRecord> takeRecords() native;
-}
-
class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" {
+ final int firstEmptyRegionIndex;
+
final String name;
final bool overset;
_NodeListJs getContent() native;
- _NodeListJs getRegionsByContentNode(_NodeJs contentNode) native;
+ _NodeListJs getRegionsByContent(_NodeJs contentNode) native;
}
class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPoint" {
@@ -17996,7 +17998,7 @@ interface MouseEvent extends UIEvent {
// WARNING: Do not edit - generated code.
-typedef bool MutationCallback(List<MutationRecord> mutations, WebKitMutationObserver observer);
+typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver observer);
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -18029,6 +18031,20 @@ interface MutationEvent extends Event {
// WARNING: Do not edit - generated code.
+interface MutationObserver {
+
+ void disconnect();
+
+ void observe(Node target, Map options);
+
+ List<MutationRecord> takeRecords();
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
interface MutationRecord {
final NodeList addedNodes;
@@ -23823,29 +23839,17 @@ interface WebKitCSSTransformValue extends CSSValueList {
// WARNING: Do not edit - generated code.
-interface WebKitMutationObserver {
-
- void disconnect();
-
- void observe(Node target, Map options);
-
- List<MutationRecord> takeRecords();
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface WebKitNamedFlow {
+ final int firstEmptyRegionIndex;
+
final String name;
final bool overset;
NodeList getContent();
- NodeList getRegionsByContentNode(Node contentNode);
+ NodeList getRegionsByContent(Node contentNode);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698