blob: 07615f5a378c7202a86da56e0864ea6c3358278a [file] [log] [blame]
/*
* Copyright (c) 2014, 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.
*/
/**
* @assertion ElementStream<Event> get onError
* Stream of error events handled by this Element.
* @description Checks that correct events are delivered via the stream
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../../../Utils/async_utils.dart";
main() {
var type = 'error';
var x = document.body;
x.innerHtml ='<img src="IntentionallyMissingFile.png">';
asyncStart();
x.firstChild.onError.listen((e) {
Expect.equals(type, e.type);
asyncEnd();
});
}