| Index: lib/html/doc/interface/HashChangeEvent.dart
|
| diff --git a/lib/html/doc/interface/HashChangeEvent.dart b/lib/html/doc/interface/HashChangeEvent.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c25ae875c19e481b7bd1c77473ad804c76816aab
|
| --- /dev/null
|
| +++ b/lib/html/doc/interface/HashChangeEvent.dart
|
| @@ -0,0 +1,18 @@
|
| +// 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.
|
| +
|
| +/// @domName HashChangeEvent
|
| +interface HashChangeEvent extends Event {
|
| +
|
| + /** @domName HashChangeEvent.newURL */
|
| + final String newURL;
|
| +
|
| + /** @domName HashChangeEvent.oldURL */
|
| + final String oldURL;
|
| +
|
| + /** @domName HashChangeEvent.initHashChangeEvent */
|
| + void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL);
|
| +}
|
|
|