Bug 1857999: Add html namespace declarations for files that are missing it. r=Gijs,webdriver-reviewers,devtools-reviewers

The automated scripts requires an already present namespace prefix for the
xhtml namespace so just manually add those for documents that don't already have
one.

Differential Revision: https://phabricator.services.mozilla.com/D190680
This commit is contained in:
Dave Townsend 2023-10-18 07:04:41 +00:00
Родитель a13b629b15
Коммит e9df606fd2
5 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -8,6 +8,7 @@
<!-- minwidth=50 is sum width of chevron and meatball menu button. --> <!-- minwidth=50 is sum width of chevron and meatball menu button. -->
<window <window
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
id="devtools-toolbox-window" id="devtools-toolbox-window"
macanimationtype="document" macanimationtype="document"
windowtype="devtools:toolbox" windowtype="devtools:toolbox"

Просмотреть файл

@ -11,11 +11,9 @@
title="Title Test" title="Title Test"
windowtype="Test Type" windowtype="Test Type"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
> >
<dialog <dialog id="dia">
id="dia"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<vbox id="things"> <vbox id="things">
<input <input
xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml"

Просмотреть файл

@ -10,6 +10,7 @@
<window <window
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
title="&testDialog.title;" title="&testDialog.title;"
> >
<dialog id="testDialog" buttons="accept,cancel"> <dialog id="testDialog" buttons="accept,cancel">

Просмотреть файл

@ -9,6 +9,7 @@
<window <window
id="test-window" id="test-window"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
> >
<popupset id="options-popupset"> <popupset id="options-popupset">
<menupopup id="options-menupopup" position="before_end"> <menupopup id="options-menupopup" position="before_end">

Просмотреть файл

@ -7,7 +7,10 @@
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<!DOCTYPE window> <!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <window
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
>
<dialog> <dialog>
<script src="chrome://global/content/selectDialog.js" /> <script src="chrome://global/content/selectDialog.js" />
<keyset id="dialogKeys" /> <keyset id="dialogKeys" />