mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
288 B
HTML
15 lines
288 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body:first-letter { float: right; }
|
|
</style>
|
|
<script>
|
|
function boom() {
|
|
document.body.removeChild(document.body.firstChild);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">abcכd
|
|
<div>This sentence should be the only text on the page.</div></body>
|
|
</html>
|