WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED CONFIGURATION CHANGED
131074
document.createElement() should always return an element in the HTML namespace
https://bugs.webkit.org/show_bug.cgi?id=131074
Summary
document.createElement() should always return an element in the HTML namespace
Daniel Bates
Reported
2014-04-01 16:03:57 PDT
According to <
http://dom.spec.whatwg.org/#dom-document-createelement
> (20 March 2014), document.createElement() should always return an element in the HTML namespace: [[ The createElement(localName) method must run the these steps: 1. If localName does not match the Name production, throw an "InvalidCharacterError" exception. 2. If the context object is an HTML document, let localName be converted to ASCII lowercase. 3. Let interface be the element interface for localName and the HTML namespace. 4. Return a new element that implements interface, with no attributes, namespace set to the HTML namespace, local name set to localName, and node document set to the context object. ]] At the time of writing, document.createElement() [1] returns an element in the HTML namespace for an XHTML document. Otherwise, it returns an element in the "null namespace". [1] <
http://trac.webkit.org/browser/trunk/Source/WebCore/dom/Document.cpp?rev=166600#L854
>
Attachments
Add attachment
proposed patch, testcase, etc.
Daniel Bates
Comment 1
2014-04-02 14:43:31 PDT
For completeness, I ran into this issue when merging a Blink patch in
bug #131079
.
Ahmad Saleem
Comment 2
2022-09-12 09:15:01 PDT
rniwa@webkit.org
- Is this something still needed or an issue? Thanks!
Alexey Proskuryakov
Comment 3
2022-09-12 14:33:51 PDT
Running this in Web Inspector console for a HTML webpage, looks like this is fixed.
> document.createElement("a")
< <a></a>
> $1.namespaceURI
< "
http://www.w3.org/1999/xhtml
"
Ahmad Saleem
Comment 4
2023-01-03 16:36:23 PST
We have FIXME about this bug in here:
https://github.com/WebKit/WebKit/blob/main/LayoutTests/resources/js-test.js#L19
Should we modify our js-test.js script to update this?
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug