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

Unified Diff: client/html/release/html.dart

Issue 8673005: This class wasn't used anyway. Removing as it causes errors due to recent VM changes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | « no previous file | client/html/src/Element.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/html.dart
diff --git a/client/html/release/html.dart b/client/html/release/html.dart
index 11eab7e4728627c2d1f94401633061eb8fedf076..2f8969397519cfa66b342d6664d5d7776b7893ad 100644
--- a/client/html/release/html.dart
+++ b/client/html/release/html.dart
@@ -22933,14 +22933,6 @@ class DeferredElementRect {
// TODO(jacobr)
}
-class ScrollOptions {
- final int lines;
- final int pages;
- final bool center;
-
- ScrollOptions([this.lines = 0, this.pages = 0, this.center = false]);
-}
-
interface ElementEvents extends Events {
EventListenerList get abort();
EventListenerList get beforeCopy();
@@ -25334,7 +25326,7 @@ class _ChildrenNodeList implements NodeList {
/** @domName Node.hasChildNodes */
bool isEmpty() {
- return _node.hasChildNodes();
+ return !_node.hasChildNodes();
}
int get length() {
@@ -25473,7 +25465,7 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
return this;
}
- /** @domName Node.contains */
+ /** @domName contains */
bool contains(Node otherNode) {
// TODO: Feature detect and use built in.
while (otherNode != null && otherNode != this) {
« no previous file with comments | « no previous file | client/html/src/Element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698