Closed
Bug 371256
Opened 18 years ago
Closed 18 years ago
combining <a> and <text> leads to validation problems
Categories
(Core :: SVG, defect)
Core
SVG
Tracking
()
RESOLVED
FIXED
People
(Reporter: longsonr, Assigned: longsonr)
Details
Attachments
(2 files)
685 bytes,
image/svg+xml
|
Details | |
4.54 KB,
patch
|
roc
:
review+
roc
:
superreview+
|
Details | Diff | Splinter Review |
Various things allowed that should not be and not that should:
<svg><a><tspan></tspan></a></svg>
currently allowed but should not be as <tspan> parentage must eventually lead to <text> similar for <textPath>. Curr
<svg><text><a><textPath></textPath></a></text>
Currently not allowed but should be as textPath only created if parent is text.
Basically we need to loop getting parents till we find a non <a> element then see what that is.
Assignee | ||
Comment 1•18 years ago
|
||
Assignee: general → longsonr
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•18 years ago
|
||
c.f. http://lists.w3.org/Archives/Public/www-svg/2007Feb/0064.html and http://lists.w3.org/Archives/Public/www-svg/2007Feb/0071.html
Attachment #257682 -
Flags: review?(roc)
Attachment #257682 -
Flags: superreview+
Attachment #257682 -
Flags: review?(roc)
Attachment #257682 -
Flags: review+
Assignee | ||
Comment 3•18 years ago
|
||
checked in.
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•