Bug 44523
Summary: | isContentEditable incorrectly reports back true on iOS devices | ||
---|---|---|---|
Product: | WebKit | Reporter: | Niels Leenheer (HTML5test) <info> |
Component: | HTML Editing | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED INVALID | ||
Severity: | Major | CC: | enrica |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Other | ||
OS: | Other | ||
URL: | http://beta.html5test.com/testcases/contenteditable/ |
Niels Leenheer (HTML5test)
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
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexey Proskuryakov
Please file iOS specific bugs via http://bugreport.apple.com, because iOS WebKit isn't built directly from webkit.org sources.
Niels Leenheer (HTML5test)
Radar #8349666