crbug.com/32865 selectoin-focus order

by int32_t

HTML

<input type=text value="foo bar baz">
<pre></pre>

JavaScript

var i = document.querySelector('input');
i.addEventListener('mousedown', function() {
    log('MOUSEDOWN: ' + i.selectionStart + ':' + i.selectionEnd);
}, false);
i.addEventListener('focus', function() {
    log('FOCUS: ' + i.selectionStart + ':' + i.selectionEnd);
}, false);

function log(str) {
    document.querySelector('pre').innerHTML += str + '\n';
}