Make about:about an HTML file
Categories
(Toolkit :: General, task, P3)
Tracking
()
Tracking | Status | |
---|---|---|
firefox75 | --- | fixed |
People
(Reporter: ntim, Assigned: jcadler, Mentored)
References
(Blocks 1 open bug)
Details
(Keywords: good-first-bug)
Attachments
(1 file, 1 obsolete file)
(deleted),
text/x-phabricator-request
|
Details |
It is an XHTML file right now, and it could be turned into a HTML file, given how simple it is atm.
https://searchfox.org/mozilla-central/source/toolkit/content/aboutAbout.xhtml
Updated•5 years ago
|
Reporter | ||
Updated•5 years ago
|
Reporter | ||
Comment 1•5 years ago
|
||
Steps to fix this bug:
In toolkit/content/aboutAbout.xhtml:
- Remove
<?xml version="1.0" encoding="UTF-8"?>
- Replace
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
with<!DOCTYPE html>
- Add
<meta charset="utf-8">
inside<head>
- Replace the self-closing tags (
/>
) with>
(eg. just remove the slash) on thelink
andmeta
tags - Remove
type="text/css"
from thelink
tag
Then run hg rename toolkit/content/aboutAbout.xhtml toolkit/content/aboutAbout.html
And replace aboutAbout.xhtml
with aboutAbout.html
in docshell/base/nsAboutRedirector.cpp and toolkit/content/jar.mn
Bug 1476639: Remove scrollToIndex
Updated•5 years ago
|
Comment 4•5 years ago
|
||
Comment on attachment 9129543 [details]
Bug 1609821: Remove scrollToIndex Function on richlistbox
Revision D64198 was moved to bug 1476639. Setting attachment 9129543 [details] to obsolete.
Updated•5 years ago
|
Updated•5 years ago
|
Updated•5 years ago
|
Updated•5 years ago
|
Comment 5•5 years ago
|
||
Comment on attachment 9129543 [details]
Bug 1609821: Remove scrollToIndex Function on richlistbox
Revision D64198 was moved to bug 1476639. Setting attachment 9129543 [details] to obsolete.
Comment 7•5 years ago
|
||
bugherder |
Description
•