Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../../resources/testharness.js"></script> | |
| 3 <script src="../../../resources/testharnessreport.js"></script> | |
| 4 <div id="div"> | |
| 5 <textarea id="textarea" readonly="readonly"> | |
| 6 foo | |
| 7 </textarea></div> | |
| 8 <script> | |
| 9 test(function(){ | |
|
yosin_UTC9
2016/11/30 05:32:11
Could you add assert_*? What behavior do you expec
| |
| 10 textarea.focus(); | |
| 11 window.getSelection().extend(div); | |
|
yosin_UTC9
2016/11/30 05:32:11
Since selection anchor position is inside TEXTAREA
| |
| 12 }); | |
| 13 </script> | |
| OLD | NEW |