mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
294 B
HTML
17 lines
294 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function ddoe() {
|
|
var x=document.getElementById('a');
|
|
x.parentNode.removeChild(x);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="ddoe()">
|
|
<div style="width: 1px;">
|
|
<span id="a">𐶅</span>
|
|
𐶅
|
|
</div>
|
|
</body>
|
|
</html>
|