blob: 8f07af8b06db001b9f0c087bafc559376dba002a [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 This page tests calling document.importNode(null)
*/
import "dart:html";
import "../../testcommon.dart";
main() {
shouldThrow(() => document.importNode(null));
}