mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00: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>
|