mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
557 B
HTML
20 lines
557 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.body.appendChild(document.createTextNode(String.fromCharCode(0x202E)));
|
|
document.body.appendChild(document.createTextNode(String.fromCharCode(0x000D)));
|
|
document.body.appendChild(document.createTextNode(String.fromCharCode(0x200D)));
|
|
document.body.appendChild(document.createTextNode(String.fromCharCode(0xD75A)));
|
|
document.body.appendChild(document.createTextNode(String.fromCharCode(0xD63F)));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
</body>
|
|
</html> |