word-break-001

word-break - break-all keyword value

WeasyPrint

This browser

Assertion
Check that 'word-break' with 'break-all' keyword value implies to words break between any two letters without hyphenate.

Source

 1 <!DOCTYPE html>
 2 <html><head><meta charset="utf-8">
 3 <title>CSS Text Test: word-break - break-all keyword value</title>
 4 <link href="http://www.intel.com" rel="author" title="Intel">
 5 <link href="mailto:shiyoux.tan@intel.com" rel="author" title="Shiyou Tan">
 6 <link href="http://www.w3.org/TR/css-text-3/#word-break" rel="help">
 7 <meta content="" name="flags">
 8 <meta content="Check that 'word-break' with 'break-all' keyword value implies to words break between any two letters without hyphenate." name="assert">
 9 <style>
10   div {
11     border: 2px black solid;
12     color: blue;
13     width: 100px;
14     word-break: break-all;
15   }
16 </style>
17 </head><body>
18   <p>Test passes if all the words below are inside the box and break between any two letters without hyphenate.</p>
19   <div>Words in these lines should break between any two letters and be inside the box.</div>
20 
21 
22 </body></html>