mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
22 lines
399 B
HTML
22 lines
399 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.body.style.whiteSpace = "";
|
|
document.getElementById("b").style.direction = "";
|
|
}
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
|
|
#c:first-letter { font-size-adjust: 8388609; }
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="boom();" style="white-space: pre;"><div id="b" style="direction: rtl;"><div id="c">Qqq Rrr Sss.</div></div></body>
|
|
</html>
|