blob: 910231edc5d7b0edae9d597131c1a865d5b09b39 [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 void enteredView()
* Called by the DOM when this element has been inserted into the live document.
* @description Checks that enteredView() is called when element is inserted
* into the live document.
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../../../Utils/async_utils.dart";
class MyIFrameElement extends IFrameElement {
enteredView() {
super.enteredView();
asyncEnd();
}
}
main() {
IFrameElement x=new IFrameElement();
asyncStart();
document.body.append(x);
}