| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| ul > li { float: right; background: skyblue; } | |
| ul > li > a { display: block; margin: 10.5px; text-decoration: none; } | |
| </style> | |
| <script> | |
| if (window.testRunner) | |
| testRunner.dumpAsText(true); | |
| </script> | |
| </head> | |
| <body> | |
| <ul> | |
| <li><a href="#">Lorem ipsum</a></li> | |
| <li><a href="#">dolor sit amet</a></li> | |
| <li><a href="#">consectetur adipiscing elit</a></li> | |
| </ul> | |
| Links to the right should not wrap. | |
| </body> | |
| </html> |