Bug 29436 - [Qt] WebKit does not create proper HTML tags
Summary: [Qt] WebKit does not create proper HTML tags
Status: RESOLVED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other OS X 10.5
: P2 Normal
Assignee: Nobody
URL:
Keywords: Qt
Depends on:
Blocks:
 
Reported: 2009-09-18 07:47 PDT by Tor Arne Vestbø
Modified: 2009-11-27 06:07 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tor Arne Vestbø 2009-09-18 07:47:25 PDT
This bug report originated from issue QTBUG-4093
<http://bugreports.qt.nokia.com/browse/QTBUG-4093>

--- Description ---

E.g.:
Open the inspector and run this JavaScript:
document.execCommand("InsertHTML", false, "<img src='foo.jpg' />");
What gets written to the HTML is <img src='foo.jpg'> instead of <img src='foo.jpg' />
Comment 1 Simon Hausmann 2009-11-27 06:07:53 PST
This is not really a bug. The image is inserted correctly into the DOM tree and the way it is visualized in the inspector is just a simplification, omitting the closing slash.