Closed
Bug 421464
Opened 18 years ago
Closed 18 years ago
Make "type" attribute on <style> element optional
Categories
(Core :: SVG, defect)
Core
SVG
Tracking
()
RESOLVED
FIXED
People
(Reporter: roc, Assigned: jwatt)
References
()
Details
Attachments
(1 file)
|
868 bytes,
patch
|
longsonr
:
review+
roc
:
superreview+
|
Details | Diff | Splinter Review |
The SVG WG has decided the "type" attribute on the <style> element should be optional, to match HTML's <style> element. We should fix that, it should be easy.
Flags: blocking1.9?
| Assignee | ||
Comment 1•18 years ago
|
||
It is easy, and yes, we should do this.
Assignee: nobody → jwatt
Status: NEW → ASSIGNED
Attachment #307901 -
Flags: superreview?(roc)
Attachment #307901 -
Flags: review?(longsonr)
Comment 2•18 years ago
|
||
Comment on attachment 307901 [details] [diff] [review]
patch
>+ if (aType.IsEmpty()) {
>+ aType += NS_LITERAL_STRING("text/css").get();
Isn't assignLiteral better/simpler?
aType.AssignLiteral("text/css")
r=longsonr with that, assuming that works.
>+ }
>
> return;
> }
Attachment #307901 -
Flags: review?(longsonr) → review+
| Reporter | ||
Comment 3•18 years ago
|
||
Comment on attachment 307901 [details] [diff] [review]
patch
what Robert said
Attachment #307901 -
Flags: superreview?(roc) → superreview+
| Assignee | ||
Comment 5•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
•