Fix more bustage in testcase for bug 551654.

This commit is contained in:
Peter Van der Beken 2010-05-04 16:09:37 +02:00
Родитель a2c4844232
Коммит f6fffc8b0d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -39,9 +39,9 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=551654
processor.importStylesheet(styleDoc);
var fragment = processor.transformToFragment(originalDoc, document);
is(content.firstChild.nodeType, Node.TEXT_NODE,
is(fragment.firstChild.nodeType, Node.TEXT_NODE,
"Result of transform should be a textnode");
is(content.firstChild.nodeValue, "42",
is(fragment.firstChild.nodeValue, "42",
"Result of transform should be a textnode with value '42'");
</script>