mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
248 B
HTML
21 lines
248 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#z:first-letter { float: right; }
|
|
</style>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var z = document.getElementById("z");
|
|
z.removeChild(z.firstChild);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<div id="z">abc</div>
|
|
|
|
</body>
|
|
</html>
|