dea080253a
DDC should skip some of these by default from the status file, so these were tested using dart2js in strong mode. Change-Id: I10a9096a9af7e394c416d26530ac42646991ddc1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/139964 Reviewed-by: Bob Nystrom <rnystrom@google.com>
25 lines
681 B
Dart
25 lines
681 B
Dart
// Copyright (c) 2013, 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.
|
|
|
|
// Regression test for CL 194523002.
|
|
import 'dart:html';
|
|
|
|
import 'package:async_helper/async_minitest.dart';
|
|
|
|
import 'utils.dart';
|
|
|
|
class A extends HtmlElement {
|
|
static final tag = 'x-a';
|
|
factory A() => new Element.tag(tag) as A;
|
|
A.created() : super.created();
|
|
}
|
|
|
|
main() async {
|
|
// Adapted from Blink's
|
|
// fast/dom/custom/constructor-calls-created-synchronously test.
|
|
|
|
await customElementsReady;
|
|
document.registerElement2(A.tag, {'prototype': A});
|
|
}
|