Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 div::before { | |
| 4 position: relative; | |
| 5 overflow: scroll; | |
| 6 display: block; | |
| 7 width: 100px; | |
| 8 height: 100px; | |
| 9 content: "." | |
| 10 } | |
| 11 | |
| 12 :nth-child(13)::-webkit-scrollbar { | |
| 13 color: pink; | |
| 14 } | |
| 15 </style> | |
| 16 <script> | |
| 17 if (window.testRunner) | |
| 18 testRunner.dumpAsText(); | |
| 19 </script> | |
| 20 <p>This test should not trigger any ASSERTs.</p> | |
| 21 <div></div> | |
| OLD | NEW |