blob: 479789a91a816cdbbbd67dd16e9555b57b5473b0 [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 const mouseOutEvent
* Static factory designed to expose mouseout events to event handlers
* that are not necessarily instances of 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 = 'mouseout';
var x = document.body;
asyncStart();
Element.mouseOutEvent.forElement(x).listen((e) {
Expect.equals(type, e.type);
asyncEnd();
});
var event = new MouseEvent(type);
x.dispatchEvent(event);
}