mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
409 B
HTML
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>
|