Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / selection_readonly.html
blob7231bccdff2b6c938847229ae7543baeee8fb055
1 <input id="readonly-input" type="text" value="This text should be selected." readonly>
2 <script>
3 var input = document.getElementById('readonly-input');
4 input.select();
5 </script>