OLD | NEW |
1 <style> | 1 <style> |
2 body { | 2 body { |
3 margin-right: 100%; | 3 margin-right: 100%; |
4 } | 4 } |
5 .normal { | 5 .normal { |
6 padding-left: 1px; | 6 padding-left: 1px; |
7 white-space: normal; | 7 white-space: normal; |
8 word-wrap: break-word; | 8 word-wrap: break-word; |
9 } | 9 } |
10 .pre { | 10 .pre { |
(...skipping 14 matching lines...) Expand all Loading... |
25 document.documentElement.offsetTop; | 25 document.documentElement.offsetTop; |
26 id1.parentElement.removeChild(id1); | 26 id1.parentElement.removeChild(id1); |
27 document.documentElement.offsetTop; | 27 document.documentElement.offsetTop; |
28 id4.appendChild(id5); | 28 id4.appendChild(id5); |
29 // Tests a case where an inline element that sets white-space:normal nested | 29 // Tests a case where an inline element that sets white-space:normal nested |
30 // in a block that sets white-space:pre works correctly when there is a | 30 // in a block that sets white-space:pre works correctly when there is a |
31 // line break at the start of the inline element. | 31 // line break at the start of the inline element. |
32 if (window.testRunner) | 32 if (window.testRunner) |
33 testRunner.dumpAsText(); | 33 testRunner.dumpAsText(); |
34 </script> | 34 </script> |
OLD | NEW |