mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
483 B
HTML
18 lines
483 B
HTML
<html><head>
|
|
<script>
|
|
function crashMoz() {
|
|
var div = document.getElementById( "adiv" );
|
|
var table = document.createElement( "TABLE" );
|
|
var tr = table.insertRow( 0 );
|
|
var td = tr.insertCell( 0 );
|
|
var text = document.createTextNode( "Hello, World." );
|
|
td.appendChild( text );
|
|
td.style.backgroundImage = "url( 'any_image_here.gif' )";
|
|
div.appendChild( table );
|
|
}
|
|
</script>
|
|
</head><body onload="crashMoz();">
|
|
<div id=adiv></div>
|
|
</body></html>
|
|
|