| Index: client/html/generated/html/dartium/Document.dart
|
| diff --git a/client/html/generated/html/dartium/Document.dart b/client/html/generated/html/dartium/Document.dart
|
| index 211696b88eea121d88dde6e1171590d02c7f90f2..443c16d108d26b4160e304cf495582c1bf7cdabf 100644
|
| --- a/client/html/generated/html/dartium/Document.dart
|
| +++ b/client/html/generated/html/dartium/Document.dart
|
| @@ -5,6 +5,11 @@
|
| class _DocumentImpl extends _ElementImpl
|
| implements Document {
|
|
|
| + _DocumentEventsImpl get on() {
|
| + if (_on == null) _on = new _DocumentEventsImpl(_wrappedDocumentPtr);
|
| + return _on;
|
| + }
|
| +
|
| Element get activeElement() => _wrap(_documentPtr.activeElement);
|
|
|
| Element get body() => _wrap(_documentPtr.body);
|
| @@ -53,11 +58,6 @@ class _DocumentImpl extends _ElementImpl
|
|
|
| String get webkitVisibilityState() => _wrap(_documentPtr.webkitVisibilityState);
|
|
|
| - _DocumentEventsImpl get on() {
|
| - if (_on == null) _on = new _DocumentEventsImpl(_wrappedDocumentPtr);
|
| - return _on;
|
| - }
|
| -
|
| Range caretRangeFromPoint(int x, int y) {
|
| return _wrap(_documentPtr.caretRangeFromPoint(_unwrap(x), _unwrap(y)));
|
| }
|
|
|