| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <p>crbug.com/609414: outline gets clipped on line-box when recompting overflow r
ather than doing layout.</p> | 2 <p>crbug.com/609414: outline gets clipped on line-box when recompting overflow r
ather than doing layout.</p> |
| 3 <div style="display:inline-block; height: 20px; width: 20px;" tabindex=0></div> | 3 <div style="display:inline-block; height: 20px; width: 20px;" tabindex=0></div> |
| 4 <div style="overflow:hidden;"> | 4 <div style="overflow:hidden;"> |
| 5 <a id="test" style="display: inline-block;" href="">TEXT</a> | 5 <a id="test" style="display: inline-block;" href="">TEXT</a> |
| 6 </div> | 6 </div> |
| 7 <script> | 7 <script> |
| 8 document.body.offsetTop; | 8 document.body.offsetTop; |
| 9 document.getElementById("test").style['outline'] = 'solid black 10px'; | 9 document.getElementById("test").style['outline'] = 'solid black 10px'; |
| 10 </script> | 10 </script> |
| OLD | NEW |