3 <script src=
"../../resources/js-test.js"></script>
6 <textarea id=
"text">text1
</textarea>
7 <input id=
"input" value=
"text2" />
9 description("This test confirms that changing an input's value on blur event does not cause re-focus.");
12 input
.addEventListener('blur', function () {
13 input
.value
= "new value";
17 shouldBe('document.activeElement', 'text')