| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <p id="description"></p> | 7 <p id="description"></p> |
| 8 <div id="console"></div> | 8 <div id="console"></div> |
| 9 <script> | 9 <script> |
| 10 | 10 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 testJustifying(selectFirstPosition, 'JustifyRight', 'hello', '<div style="text-a
lign: right;">hello</div>'); | 95 testJustifying(selectFirstPosition, 'JustifyRight', 'hello', '<div style="text-a
lign: right;">hello</div>'); |
| 96 testJustifying(selectFirstPosition, 'JustifyRight', 'hello<p>world</p>', '<div s
tyle="text-align: right;">hello</div><p>world</p>'); | 96 testJustifying(selectFirstPosition, 'JustifyRight', 'hello<p>world</p>', '<div s
tyle="text-align: right;">hello</div><p>world</p>'); |
| 97 testJustifying(selectFirstPosition, 'JustifyRight', '<p>hello</p>world', '<p sty
le="text-align: right;">hello</p>world'); | 97 testJustifying(selectFirstPosition, 'JustifyRight', '<p>hello</p>world', '<p sty
le="text-align: right;">hello</p>world'); |
| 98 testJustifying(selectAll, 'JustifyRight', 'hello<blockquote>world</blockquote>',
'<div style="text-align: right;">hello</div><blockquote style="text-align: righ
t;">world</blockquote>'); | 98 testJustifying(selectAll, 'JustifyRight', 'hello<blockquote>world</blockquote>',
'<div style="text-align: right;">hello</div><blockquote style="text-align: righ
t;">world</blockquote>'); |
| 99 testJustifying(selectAll, 'JustifyRight', '<h3>hello</h3>world', '<h3 style="tex
t-align: right;">hello</h3><div style="text-align: right;">world</div>'); | 99 testJustifying(selectAll, 'JustifyRight', '<h3>hello</h3>world', '<h3 style="tex
t-align: right;">hello</h3><div style="text-align: right;">world</div>'); |
| 100 testJustifying(selectFirstPosition, 'JustifyRight', '<div style="text-align: rig
ht;">hello<br>world</div>'); | 100 testJustifying(selectFirstPosition, 'JustifyRight', '<div style="text-align: rig
ht;">hello<br>world</div>'); |
| 101 | 101 |
| 102 document.body.removeChild(testContainer); | 102 document.body.removeChild(testContainer); |
| 103 | 103 |
| 104 </script> | 104 </script> |
| 105 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 106 </body> | 105 </body> |
| 107 </html> | 106 </html> |
| OLD | NEW |