Use a data: URL instead of an http: URL so this test can succeed even without network connectivity

This commit is contained in:
jruderman@hmc.edu 2008-01-28 23:32:24 -08:00
Родитель a786eebf13
Коммит 36179bbcd9
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -12,6 +12,7 @@
</bindings>
<script>
<![CDATA[
var xbltarget;
@ -26,13 +27,14 @@ function boom2()
{
var anox = document.getAnonymousNodes(xbltarget)[0];
var frame = document.createElementNS("http://www.w3.org/1999/xhtml", "frame")
frame.src = "http://www.squarefree.com/tests/simple.html";
frame.src = "data:text/html,<html><body>Hi!</body></html>";
anox.appendChild(frame);
xbltarget.style.MozBinding = "url('#empty')";
document.documentElement.removeAttribute("class");
}
]]>
</script>
</head>
<body onload="boom1()">