mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
20 lines
331 B
HTML
20 lines
331 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var s = document.createElement("STYLE");
|
|
var t = document.createTextNode("\uDB00x"); // a high surrogate followed by 'x'
|
|
document.documentElement.appendChild(s);
|
|
s.appendChild(t);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
</body>
|
|
</html>
|