jruderman%hmc.edu 02239ae5fc Add a crashtest
git-svn-id: svn://10.0.0.236/trunk@248613 18797224-902f-48f8-a5cc-f745e15eee43
2008-03-26 21:45:16 +00:00

20 lines
257 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
var div = document.getElementById("div");
div.textContent = String.fromCharCode(0xDCBF);
}
</script>
</head>
<body onload="boom();">
<div id="div"></div>
</body>
</html>