RESOLVED FIXED 4475
<noscript>, <noframes>, <nolayer> and <noembed> elements should be in the DOM
https://bugs.webkit.org/show_bug.cgi?id=4475
Summary <noscript>, <noframes>, <nolayer> and <noembed> elements should be in the DOM
Anders Carlsson
Reported 2005-08-17 02:46:36 PDT
Currently, the HTML parser ignores the above tags, while other browsers put them in the DOM. WinIE, MacIE and Opera ignores any child nodes of the elements, while mozilla treats all contents as a single text node, for example <noframes><b>Foo</b></noframes> will create a noframes element with a child node that has the value "<b>Foo</b>". Some of the HTML element tests are failing because of this.
Attachments
Add "no-elements" to the DOM (12.74 KB, patch)
2005-08-17 02:48 PDT, Anders Carlsson
darin: review+
Anders Carlsson
Comment 1 2005-08-17 02:48:26 PDT
Created attachment 3432 [details] Add "no-elements" to the DOM Here's a patch that adds the "no-elements" to the DOM. It doesn't create any children for them though, but I think this is OK.
Note You need to log in before you can comment on or make changes to this bug.