blob: eecb2e8a1e8c06f6a7fd8f165c6f57b34301c57d [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.
*/
/*
* Portions of this test are derived from code under the following license:
*
* Web-platform-tests are covered by the dual-licensing approach described in:
* http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html
*/
/**
* after web-platform-tests/dom/events/Event-type.html
*
* @description check Event constructors
* @needsreview issue #18026: Event.eventType() not supported:
* Exception: NotSupportedError: The implementation did not support the requested type of object or operation.
*/
import 'dart:html';
import "../../../Utils/expect.dart";
void main() {
Event ev=new Event.eventType("foo", "bar");
Expect.equals("foo", ev.type, "constructor Event.eventType");
ev=new Event.eventType("foo", "bar", canBubble:false, cancelable:false);
Expect.equals("foo", ev.type, "constructor Event.eventType with named arguments");
}