tenfourfox/dom/base/test/file_bug498897.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
409 B
HTML

<html>
<head>
<title>Testcase for bug 498897</title>
<script type="application/javascript" language="javascript">
<!--
function test()
{
var hadException = false;
try {
document.createComment('a');
}
catch (e) {
hadException = true;
}
parent.ok(!hadException, "Shouldn't have got an exception!");
parent.testFinished();
}
//-->
</script>
</head>
<body onload="test();">
</body>
</html>