123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>preformatted-paragraph-break-as-bidi-paragraph-break</title>
- <meta charset="UTF-8">
- <script type="text/javascript">
- function boom()
- {
- document.getElementById("w").style.whiteSpace="normal";
- }
- </script>
- </head>
- <body onload="boom();">
- <pre id="w">א -->
- --> ב</pre>
- </body>
- </html>
|