mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|