blob: 01952d3fadd0202516a994a1c0d793aa64438a32 [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.
*/
/**
* @description Test using id in frame
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../testcommon.dart";
main() {
var parent = document.createElement('iframe');
parent.id = 'theframe';
document.body.append(parent);
Expect.isNotNull(document.getElementById("theframe"));
}