gecko/content/base/crashtests/558973.html
Peter Van der Beken 6fe7a598df Fix for bug 558973 ("ASSERTION: Nodes that are not documents, document fragments or elements can't be parents!"). r=jst.
--HG--
extra : rebase_source : 6d9f76e94457823bb425f546053f4d24e80aec5c
2010-04-15 10:28:57 +02:00

18 lines
226 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
var child = document.createTextNode("a");
var attr = document.createAttribute("a");
try {
attr.appendChild(child);
}
catch (e) {
}
</script>
</head>
</html>