Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype HTML> | |
| 2 <script src="resources/selection.js"></script> | |
| 3 <script> | |
| 4 // Selects two lines and expects a newline to be represented, but clipped by the containing div. | |
| 5 function run() { | |
| 6 selectNode(container); | |
| 7 }; | |
| 8 window.onload = run; | |
| 9 </script> | |
| 10 | |
| 11 <div id="container"> | |
| 12 <div> | |
| 13 <div style="overflow:hidden; display: inline-block">test1</div> | |
| 14 </div> | |
| 15 test2 | |
| 16 </div> | |
| OLD | NEW |