| 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) {
|
|
|