blob: bb82c6628078129d326fe23212b307b7881bb423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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>
|