mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
24 lines
366 B
HTML
24 lines
366 B
HTML
<html style="direction: rtl;">
|
|
<head>
|
|
<style>
|
|
|
|
body:after { content: '0'; }
|
|
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>
|