Closed
Bug 283145
Opened 20 years ago
Closed 20 years ago
mail_help doesn't validate as XHTML 1.1
Categories
(SeaMonkey :: Help Documentation, defect)
SeaMonkey
Help Documentation
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: prometeo.bugs, Assigned: prometeo.bugs)
References
Details
Attachments
(1 file, 1 obsolete file)
25.37 KB,
patch
|
iannbugzilla
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040922
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040922
mail_help has a XHTML 1.1 doctype, but it doesn't validate since it uses some
really old html structs. This bug is just for cleaning up the tags, nothing else.
Reproducible: Always
Steps to Reproduce:
Assignee | ||
Comment 1•20 years ago
|
||
Comment 2•20 years ago
|
||
--> Giacomo
Hmm, don't forget to ask for review ;)
Assignee: neil.parkwaycc.co.uk → giacomo.magnini
Updated•20 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Assignee | ||
Updated•20 years ago
|
Attachment #175129 -
Flags: review?(bugzilla)
Comment on attachment 175129 [details] [diff] [review]
With these changes, mail_help does validate on WDG (except for brand.dtd, as always)
You have put in the ' to ' changes as well - all those changes should be
in the appropiate bug not this one.
Attachment #175129 -
Flags: review?(bugzilla) → review-
Assignee | ||
Comment 4•20 years ago
|
||
I'll be out of town till next week, so the rest of the patches will have to
wait.
Attachment #175129 -
Attachment is obsolete: true
Attachment #175400 -
Flags: review?(bugzilla)
Comment on attachment 175400 [details] [diff] [review]
Another lesson learned: don't count on gedit Undo button... Sorry Ian... :(
(Checked in)
Checking in mail_help.xhtml;
/cvsroot/mozilla/extensions/help/resources/locale/en-US/mail_help.xhtml,v <--
mail_help.xhtml
new revision: 1.55; previous revision: 1.54
done
Attachment #175400 -
Attachment description: Another lesson learned: don't count on gedit Undo button... Sorry Ian... :( → Another lesson learned: don't count on gedit Undo button... Sorry Ian... :(
(Checked in)
Attachment #175400 -
Flags: review?(bugzilla) → review+
Assignee | ||
Updated•20 years ago
|
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Comment 6•20 years ago
|
||
Nit: I think those two changes below made the images and the title text not
lining up correctly:
----------------------------------------------------------------------------
<table>
<tr>
-<td colspan="2"><img src="images/mail_read_column.png" hspace="81"
-vspace="0" /></td>
+<td colspan="2"><img src="images/mail_read_column.png" alt="" /></td>
</tr>
<tr>
-<td width="80"></td>
+<td style="width: 80px;"></td>
<td><strong>Read column</strong></td>
</tr>
</table>
----------------------------------------------------------------------------
<table>
<tr>
-<td colspan="2"><img src="images/mail_flag_column.png" hspace="81"
-vspace="0" /></td>
+<td colspan="2"><img src="images/mail_flag_column.png" alt="" /></td>
</tr>
<tr>
-<td width="80"></td>
+<td style="width: 80px;"></td>
<td><strong>Flag column</strong></td>
</tr>
</table>
----------------------------------------------------------------------------
You need to log in
before you can comment on or make changes to this bug.
Description
•