mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
426 B
HTML
18 lines
426 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html><head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
<title>Testcase for bug 454820</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<p>PASS if Firefox does not crash.</p>
|
||
|
<script type="text/javascript">
|
||
|
var evObj = document.createEvent('UIEvents');
|
||
|
evObj.initUIEvent( 'keypress', true, true, window, 1 );
|
||
|
document.getElementsByTagName('p')[0].dispatchEvent(evObj);
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|