Mypal/layout/tables/crashtests/78623-1.html
2019-03-11 13:26:37 +03:00

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>