| <!DOCTYPE html> | |
| <html> | |
| <title>Text-Wrap Test</title> | |
| <head> | |
| <style> | |
| body { | |
| font-family: "Ahem"; | |
| font-size: 12px; | |
| text-wrap: balance; | |
| width: 500px; | |
| } | |
| .absolute-block { | |
| display: block; | |
| position: absolute; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <span>This test passes if it has the correct breaking points to balance the text.</span> | |
| <div class = "absolute-block"></div> | |
| </body> | |
| </html> |