blob: 67ecb4b6bd940964356638cd671f54265352a894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html style="direction: rtl;">
<head>
<style>
body:first-letter { float: right; }
</style>
<script>
function boom()
{
document.documentElement.style.direction = "";
document.documentElement.offsetHeight;
document.documentElement.style.textIndent = "3px";
}
</script>
</head>
<body onload="boom();"> ‮</body>
</html>
|