blob: dd57ea18dece2732fbd0699193f87f7ca6a3a578 [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 map element.
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../testcommon.dart";
main() {
document.body.setInnerHtml('''
<map title="map" id="firstmap">
<div>PASS</div>
''', treeSanitizer: new NullTreeSanitizer());
Expect.isNotNull(document.getElementById("firstmap"));
}