-
Bug
-
Resolution: Won't Fix
-
P5
-
18
There's no space between "x" and href here, resulting in "glued" attributes:
<a id="x"href="example.com"></a>
According to the HTML spec, a situation such as this should cause a special kind of parsing error:
https://html.spec.whatwg.org/multipage/parsing.html#after-attribute-value-(quoted)-state
DocCommentParser is forgiving and parses that string as if there were whitespace between "x" and href.
<a id="x"href="example.com"></a>
According to the HTML spec, a situation such as this should cause a special kind of parsing error:
https://html.spec.whatwg.org/multipage/parsing.html#after-attribute-value-(quoted)-state
DocCommentParser is forgiving and parses that string as if there were whitespace between "x" and href.
- relates to
-
JDK-8267122 Premature ">" should fail HTML parsing
-
- Closed
-
-
JDK-8273237 U+0000 NULL character in an attribute should fail HTML parsing
-
- Closed
-