Skip to content

Commit e9df606

Browse files
committed
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
1 parent a13b629 commit e9df606

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

devtools/client/framework/toolbox-window.xhtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<!-- minwidth=50 is sum width of chevron and meatball menu button. -->
99
<window
1010
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
11+
xmlns:html="http://www.w3.org/1999/xhtml"
1112
id="devtools-toolbox-window"
1213
macanimationtype="document"
1314
windowtype="devtools:toolbox"

remote/marionette/chrome/test.xhtml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111
title="Title Test"
1212
windowtype="Test Type"
1313
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
14+
xmlns:html="http://www.w3.org/1999/xhtml"
1415
>
15-
<dialog
16-
id="dia"
17-
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
18-
>
16+
<dialog id="dia">
1917
<vbox id="things">
2018
<input
2119
xmlns="http://www.w3.org/1999/xhtml"

remote/marionette/chrome/test_dialog.xhtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<window
1212
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13+
xmlns:html="http://www.w3.org/1999/xhtml"
1314
title="&testDialog.title;"
1415
>
1516
<dialog id="testDialog" buttons="accept,cancel">

remote/marionette/chrome/test_menupopup.xhtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<window
1010
id="test-window"
1111
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
12+
xmlns:html="http://www.w3.org/1999/xhtml"
1213
>
1314
<popupset id="options-popupset">
1415
<menupopup id="options-menupopup" position="before_end">

toolkit/components/prompts/content/selectDialog.xhtml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
88
<!DOCTYPE window>
99

10-
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
10+
<window
11+
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
12+
xmlns:html="http://www.w3.org/1999/xhtml"
13+
>
1114
<dialog>
1215
<script src="chrome://global/content/selectDialog.js" />
1316
<keyset id="dialogKeys" />

0 commit comments

Comments
 (0)