mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
424 B
HTML
16 lines
424 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
function init() {
|
||
|
// This will throw a NS_ERROR_DOM_WRONG_DOCUMENT_ERR exception
|
||
|
var doc = document.implementation.createDocument(null, 'DOC', null);
|
||
|
doc.documentElement.appendChild(doc);
|
||
|
}
|
||
|
window.addEventListener("load", init, false);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
Testcase for bug 415498. This page should show an exception in Error Console on load
|
||
|
</body>
|