blob: f3419e23d56531203fa7c012e4606d265440304b [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<MouseEvent> get onMouseOver
/// Stream of mouseover events handled by this Element.
///
/// @description Checks that correct events are delivered via the stream
import "dart:html";
import "../../../Utils/expect.dart";
main() {
bool fired = false;
var type = 'mouseover';
var x = document.body;
if (x != null) {
asyncStart();
x.onMouseOver.listen((e) {
Expect.equals(type, e.type);
if (!fired) {
asyncEnd();
fired = true;
}
});
var event = new MouseEvent(type);
x.dispatchEvent(event);
} else {
Expect.fail("Body is null");
}
}