Bug 539882 - Make test_bug324378.html not expect that attributes on second <head> move to head. r=bzbarsky.

--HG--
extra : rebase_source : 9e8f9d43c6f59751cec60e657b91bcc3422a32f0
This commit is contained in:
Henri Sivonen 2010-01-18 15:38:43 +02:00
Родитель e36ad5e7ec
Коммит 96e41d8ce9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,8 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=324378
is($("m"), null, "Unexpected node with id=m");
is(html.getAttribute("foo"), "h", "Unexpected 'foo' value on <html>");
is(head.getAttribute("foo"), "k", "Unexpected 'foo' value on <head>");
// The line below can be uncommented once the HTML5 parser is on by default
// is(head.getAttribute("foo"), null, "Unexpected 'foo' value on <head>");
is(body.getAttribute("foo"), "n", "Unexpected 'foo' value on <body>");
</script>