Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Xianzhu
2017/05/23 20:35:42
Please put this file under paint/invalidation dire
rhogan
2017/05/23 21:32:16
Done.
| |
| 2 <style> | |
| 3 p {overflow:hidden;} | |
|
Xianzhu
2017/05/23 20:35:42
I suggest removing the above line, because whether
rhogan
2017/05/23 21:32:16
Mm, not with you here - we do need the container t
Xianzhu
2017/05/23 21:59:47
I found I misunderstood the bug. I thought it were
| |
| 4 #test1 {overflow:hidden; display: inline-block;} | |
| 5 #test2 {overflow:hidden; display: block;} | |
| 6 </style> | |
| 7 <p> crbug.com/724453: There should be only an outline on the right-hand side and in the descent below the text.</p> | |
| 8 <p><a href="" id="test1"><span>Text</span></a></p> | |
| 9 <p> crbug.com/724453: There should be no outline below.</p> | |
| 10 <p><a href="" id="test2"><span>Text</span></a></p> | |
| 11 <script> | |
| 12 document.body.offsetTop; | |
|
Xianzhu
2017/05/23 20:35:42
Please use
<script src="../../resources/run-after-
rhogan
2017/05/23 21:32:16
Done.
| |
| 13 document.getElementById("test1").style['outline'] = 'solid black 10px'; | |
| 14 document.getElementById("test2").style['outline'] = 'solid black 10px'; | |
| 15 </script> | |
| 16 | |
| OLD | NEW |