Skip to content

Commit 24ffdb7

Browse files
committed
Bug 1583696 - Remove XUL grid from toolkit/components/prompts/content/tabprompts.jsm. r=MattN,marionette-reviewers,whimboo
Differential Revision: https://phabricator.services.mozilla.com/D61442 UltraBlame original commit: 0aa77ee04caae3d4081bbc992f2d962d3c9ec449
1 parent 8a41c13 commit 24ffdb7

File tree

9 files changed

+391
-615
lines changed

9 files changed

+391
-615
lines changed

browser/base/content/browser.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38731,43 +38731,43 @@ allowFocusRow
3873138731
=
3873238732
document
3873338733
.
38734-
createXULElement
38734+
createElement
3873538735
(
3873638736
"
38737-
row
38737+
div
3873838738
"
3873938739
)
3874038740
;
38741-
allowFocusCheckbox
38741+
let
38742+
spacer
3874238743
=
3874338744
document
3874438745
.
38745-
createXULElement
38746+
createElement
3874638747
(
3874738748
"
38748-
checkbox
38749+
div
3874938750
"
3875038751
)
3875138752
;
38752-
let
38753+
allowFocusRow
38754+
.
38755+
appendChild
38756+
(
3875338757
spacer
38758+
)
38759+
;
38760+
allowFocusCheckbox
3875438761
=
3875538762
document
3875638763
.
3875738764
createXULElement
3875838765
(
3875938766
"
38760-
spacer
38767+
checkbox
3876138768
"
3876238769
)
3876338770
;
38764-
allowFocusRow
38765-
.
38766-
appendChild
38767-
(
38768-
spacer
38769-
)
38770-
;
3877138771
let
3877238772
label
3877338773
=

docshell/test/browser/browser_bug1415918_beforeunload_options.js

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,33 +36,6 @@ test
3636
(
3737
)
3838
{
39-
const
40-
XUL_NS
41-
=
42-
"
43-
http
44-
:
45-
/
46-
/
47-
www
48-
.
49-
mozilla
50-
.
51-
org
52-
/
53-
keymaster
54-
/
55-
gatekeeper
56-
/
57-
there
58-
.
59-
is
60-
.
61-
only
62-
.
63-
xul
64-
"
65-
;
6639
await
6740
SpecialPowers
6841
.
@@ -179,9 +152,8 @@ prompt
179152
=
180153
stack
181154
.
182-
getElementsByTagNameNS
155+
getElementsByTagName
183156
(
184-
XUL_NS
185157
"
186158
tabmodalprompt
187159
"

testing/marionette/browser.js

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -210,33 +210,6 @@ browser
210210
{
211211
}
212212
;
213-
const
214-
XUL_NS
215-
=
216-
"
217-
http
218-
:
219-
/
220-
/
221-
www
222-
.
223-
mozilla
224-
.
225-
org
226-
/
227-
keymaster
228-
/
229-
gatekeeper
230-
/
231-
there
232-
.
233-
is
234-
.
235-
only
236-
.
237-
xul
238-
"
239-
;
240213
class
241214
Context
242215
{
@@ -858,9 +831,8 @@ br
858831
.
859832
parentNode
860833
.
861-
getElementsByTagNameNS
834+
getElementsByTagName
862835
(
863-
XUL_NS
864836
"
865837
tabmodalprompt
866838
"

0 commit comments

Comments
 (0)