mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
8 lines
393 B
HTML
8 lines
393 B
HTML
<!doctype html>
|
|
<title>Dragging selection breaks layout</title>
|
|
<p>Select all text in the input below, drag it downwards a little, and release it. Pass if you can still edit the contents of the input.</p>
|
|
<p><input value="SelectAndDrag"/></p>
|
|
<script type="text/javascript">
|
|
document.getElementsByTagName('input')[0].select();
|
|
</script>
|
|
<noscript><p>Enable JavaScript and reload</p></noscript> |