| Index: tests/html/history_test.dart
|
| diff --git a/tests/html/history_test.dart b/tests/html/history_test.dart
|
| index c3f017049204ee70fe5ff2b3c10fb50465e16d85..6f4eb3a960a7cd62ea8527b9417c7b11ffb70444 100644
|
| --- a/tests/html/history_test.dart
|
| +++ b/tests/html/history_test.dart
|
| @@ -73,6 +73,13 @@ main() {
|
| }, expectation);
|
| });
|
|
|
| + test('popstatevent', () {
|
| + expect(() {
|
| + var event = new Event.eventType('PopStateEvent', 'popstate');
|
| + expect(event is PopStateEvent, true);
|
| + }, expectation);
|
| + });
|
| +
|
| test('hashchangeevent', () {
|
| var expectation = HashChangeEvent.supported ? returnsNormally : throws;
|
| expect(() {
|
|
|