Fix for bug 485881 (test_bug409380.html has unbound variable r). r/sr=smaug.

--HG--
extra : rebase_source : 355574ce1a831e8ea1e06891b6d0a7b3b6cc57ed
This commit is contained in:
Peter Van der Beken 2009-07-14 16:04:55 +02:00
Родитель 51e0e93326
Коммит 4635efa1db
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -41,7 +41,7 @@ function runRangeTest()
"It should be possible to select text node even if the node is not in DOM.");
hadException = false;
try {
r.insertNode(document.createTextNode('5'));
range.insertNode(document.createTextNode('5'));
} catch (ex) {
hadException = true;
}