blob: 6b00d2ca0d5a3186e82c0d042a38491cd749072c [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.
*/
/*
* Portions of this test are derived from code under the following license:
*
* Web-platform-tests are covered by the dual-licensing approach described in:
* http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html
*/
/**
* after web-platform-tests/html/dom/documents/dom-tree-accessors/document.head-02.html
* @assertion http://www.whatwg.org/html5/#dom-document-head
* @description document.head
*/
import 'dart:html';
import "../../../../Utils/expectWeb.dart";
void main() {
var HTML = "http://www.w3.org/1999/xhtml";
var head = document.getElementsByTagName("head")[0];
assert_equals(document.head, head);
var head2 = document.createElementNS(HTML, "blah:head");
document.documentElement.insertBefore(head2, head);
assert_equals(document.head, head2);
var head3 = document.createElementNS("http://www.example.org/", "blah:head");
document.documentElement.insertBefore(head3, head2);
assert_equals(document.head, head2);
}