[Webkit-unassigned] [Bug 48514] New: [Qt] Text input blurs when pressing the on-screen keyboard input menu

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 28 05:26:39 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=48514

           Summary: [Qt] Text input blurs when pressing the on-screen
                    keyboard input menu
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: S60 Hardware
        OS/Version: S60 3rd edition
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mailforaleksi521 at gmail.com


Created an attachment (id=72173)
 --> (https://bugs.webkit.org/attachment.cgi?id=72173&action=review)
An example app for the bug

Environment:
--------------
OS is not S60 3rd edition, but Symbian^3 (at least)
Qt for Symbian 4.6.3

Preconditions:
--------------

View a HTML page with the following content (there is an onblur event listener, which launches a counter, which is shown in the page):

  HTML:

<input type="text" value="just click this and input menu" onblur="blurNotification();" />
<p id="blurInfo"></p>
<p id="counterAfterwards"></p>

  JavaScript:

var i = 0;
function blurNotification() {
document.getElementById('blurInfo').innerHTML = 'BLUR!'; 
document.getElementById('counterAfterwards').innerHTML = i; 
setInterval(function() {
document.getElementById('counterAfterwards').innerHTML = i; 
i = i+1;
}, 1);
}


Steps:
--------------

1) Click the text input element
-> the on-screen keyboard opens
2) Click the input menu button (button 6 in [1])
-> the onblur event have been received! [NOT OK]
3) Wait for 10 seconds
4) Press cancel to return into the on-screen keyboard
5) press the Close key to close the virtual keypad.
-> Now the counterAfterwards p element is shown to have a value over 10 (meaning that it has been counted for over 10 seconds)!

[1] http://europe.nokia.com/support/product-support/n8-00/user-guides?ccf_name=nokia-n8/guide/GUID-B7DB89EE-4255-4351-B455-AF7554AF8C8F_FILE001.html#GUID-B7DB89EE-4255-4351-B455-AF7554AF8C8F


Tested with
- N8 PR1.0, sw version 011.008, sw version date 2010-08-19
- E7
- Both devices Qt for Symbian 4.6.3

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list