Bug 545403 - Change test_hc_documentgetdoctype.html to accept both upper case and lower case doctype names. r=bnewman.

--HG--
extra : rebase_source : a8eec6469678e6c47e9fb85d1a1b77ddf25a0cf9
This commit is contained in:
Henri Sivonen 2010-02-22 14:17:31 +02:00
Родитель deaa1352fa
Коммит 7ccf14e42b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -157,8 +157,8 @@ function hc_documentgetdoctype() {
}
else {
// modified to uppercase per WHATWG
assertEquals("nodeName","HTML",docTypeName);
// Modified to allow lower case for the HTML5 parser and upper case for the old parser
assertTrue("nodeName", "HTML" == docTypeName || "html" == docTypeName);
}
nodeValue = docType.nodeValue;