[Webkit-unassigned] [Bug 44523] New: isContentEditable incorrectly reports back true on iOS devices

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 24 07:40:50 PDT 2010


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

           Summary: isContentEditable incorrectly reports back true on iOS
                    devices
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Other
               URL: http://beta.html5test.com/testcases/contenteditable/
        OS/Version: Other
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: HTML Editing
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: niels.leenheer at gmail.com


Editing HTML elements using the contenteditable attribute does not work on iOS devices. Because editing is not possible, isContentEditable should always return false on an iOS device. 

For example:

div = document.createElement('div');
div.setAttribute('contenteditable', 'true');
document.body.appendChild(div);
div.isContentEditable;
-> true    // incorrect, should be false on an iPhone, iPad or iPod touch

-- 
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