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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 1173403004: Changed to use JSInterop (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Re-gen'd somehow diffs stopped showing up in CL Created 5 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:
Download patch
« no previous file with comments | « no previous file | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index ffe111fb77f0e229957b7f851b48643dc97fa711..90917bb4590c68b169f6499ab246c4ef211c6fc6 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -3366,6 +3366,7 @@ class CssStyleDeclaration extends Interceptor with
return JS('bool', '# in #', propertyName, this);
}
+
@DomName('CSSStyleDeclaration.setProperty')
void setProperty(String propertyName, String value, [String priority]) {
return _setPropertyHelper(_browserPropertyName(propertyName),
@@ -9909,7 +9910,6 @@ class DocumentFragment extends Node implements ParentNode {
new _FrozenElementList._wrap(_querySelectorAll(selectors));
-
String get innerHtml {
final e = new Element.tag("div");
e.append(this.clone(true));
@@ -23738,6 +23738,22 @@ class Node extends EventTarget {
String value = nodeValue; // Fetch DOM Node property once.
return value == null ? super.toString() : value;
}
+
+ /**
+ * A list of this node's children.
+ *
+ * ## Other resources
+ *
+ * * [Node.childNodes]
+ * (https://developer.mozilla.org/en-US/docs/Web/API/Node.childNodes)
+ * from MDN.
+ */
+ @DomName('Node.childNodes')
+ @DocsEditable()
+ @Returns('NodeList')
+ @Creates('NodeList')
+ final List<Node> childNodes;
+
// To suppress missing implicit constructor warnings.
factory Node._() { throw new UnsupportedError("Not supported"); }
@@ -23795,21 +23811,6 @@ class Node extends EventTarget {
final String baseUri;
/**
- * A list of this node's children.
- *
- * ## Other resources
- *
- * * [Node.childNodes]
- * (https://developer.mozilla.org/en-US/docs/Web/API/Node.childNodes)
- * from MDN.
- */
- @DomName('Node.childNodes')
- @DocsEditable()
- @Returns('NodeList')
- @Creates('NodeList')
- final List<Node> childNodes;
-
- /**
* The first child of this node.
*
* ## Other resources
« no previous file with comments | « no previous file | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698