mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
21 lines
371 B
HTML
21 lines
371 B
HTML
<!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>
|
|
|