3 <script src=
"../../../resources/js-test.js"></script>
10 <input id=
"test" type=
"date">
13 description('Setting value onBlur, should not keep element in focus.');
14 var testInput
= document
.getElementById('test');
15 testInput
.addEventListener('blur', function() {
19 testInput
.value
= '2012-02-01';
21 var style
= window
.getComputedStyle(testInput
);
22 shouldBeEqualToString('style.getPropertyValue("background-color")', 'rgb(0, 0, 255)');
24 style
= window
.getComputedStyle(testInput
);
25 shouldBeEqualToString('style.getPropertyValue("background-color")', 'rgb(255, 255, 255)');