| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| <title>This tests that we renderer justified punctuation content correctly with simple line layout</title> |
| <style> |
| div { |
| text-align: justify; |
| width: 200px; |
| } |
| </style> |
| <script> |
| if (window.internals) |
| internals.settings.setSimpleLineLayoutEnabled(false); |
| </script> |
| </head> |
| <body> |
| <div>foobar ‐ foobar ‑ foobar ‒ foobar –</div> |
| <div>foobar — foobar ― foobar ‖ foobar ‗</div> |
| <div>foobar ‘ foobar ’ foobar ‚ foobar ‛</div> |
| <div>foobar “ foobar ” foobar „ foobar ‟</div> |
| <div>foobar † foobar ‡ foobar • foobar ‣</div> |
| <div>foobar ․ foobar ‥ foobar … foobar ‧</div> |
| </body> |
| </html> |