| Index: lib/html/doc/interface/StorageEvent.dart
|
| diff --git a/lib/html/doc/interface/StorageEvent.dart b/lib/html/doc/interface/StorageEvent.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7a231b088a59cb5a779cc3f7e7ba71930bc35330
|
| --- /dev/null
|
| +++ b/lib/html/doc/interface/StorageEvent.dart
|
| @@ -0,0 +1,27 @@
|
| +// 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 StorageEvent
|
| +interface StorageEvent extends Event {
|
| +
|
| + /** @domName StorageEvent.key */
|
| + final String key;
|
| +
|
| + /** @domName StorageEvent.newValue */
|
| + final String newValue;
|
| +
|
| + /** @domName StorageEvent.oldValue */
|
| + final String oldValue;
|
| +
|
| + /** @domName StorageEvent.storageArea */
|
| + final Storage storageArea;
|
| +
|
| + /** @domName StorageEvent.url */
|
| + final String url;
|
| +
|
| + /** @domName StorageEvent.initStorageEvent */
|
| + void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, String keyArg, String oldValueArg, String newValueArg, String urlArg, Storage storageAreaArg);
|
| +}
|
|
|