Skip to content

Commit ab315c2

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 cde86cb commit ab315c2

File tree

9 files changed

+430
-642
lines changed

9 files changed

+430
-642
lines changed

browser/base/content/browser.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52600,43 +52600,43 @@ allowFocusRow
5260052600
=
5260152601
document
5260252602
.
52603-
createXULElement
52603+
createElement
5260452604
(
5260552605
"
52606-
row
52606+
div
5260752607
"
5260852608
)
5260952609
;
52610-
allowFocusCheckbox
52610+
let
52611+
spacer
5261152612
=
5261252613
document
5261352614
.
52614-
createXULElement
52615+
createElement
5261552616
(
5261652617
"
52617-
checkbox
52618+
div
5261852619
"
5261952620
)
5262052621
;
52621-
let
52622+
allowFocusRow
52623+
.
52624+
appendChild
52625+
(
5262252626
spacer
52627+
)
52628+
;
52629+
allowFocusCheckbox
5262352630
=
5262452631
document
5262552632
.
5262652633
createXULElement
5262752634
(
5262852635
"
52629-
spacer
52636+
checkbox
5263052637
"
5263152638
)
5263252639
;
52633-
allowFocusRow
52634-
.
52635-
appendChild
52636-
(
52637-
spacer
52638-
)
52639-
;
5264052640
let
5264152641
label
5264252642
=

docshell/test/browser/browser_bug1415918_beforeunload_options.js

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -65,33 +65,6 @@ test
6565
(
6666
)
6767
{
68-
const
69-
XUL_NS
70-
=
71-
"
72-
http
73-
:
74-
/
75-
/
76-
www
77-
.
78-
mozilla
79-
.
80-
org
81-
/
82-
keymaster
83-
/
84-
gatekeeper
85-
/
86-
there
87-
.
88-
is
89-
.
90-
only
91-
.
92-
xul
93-
"
94-
;
9568
await
9669
SpecialPowers
9770
.
@@ -208,9 +181,8 @@ prompt
208181
=
209182
stack
210183
.
211-
getElementsByTagNameNS
184+
getElementsByTagName
212185
(
213-
XUL_NS
214186
"
215187
tabmodalprompt
216188
"

testing/marionette/browser.js

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -280,33 +280,6 @@ browser
280280
{
281281
}
282282
;
283-
const
284-
XUL_NS
285-
=
286-
"
287-
http
288-
:
289-
/
290-
/
291-
www
292-
.
293-
mozilla
294-
.
295-
org
296-
/
297-
keymaster
298-
/
299-
gatekeeper
300-
/
301-
there
302-
.
303-
is
304-
.
305-
only
306-
.
307-
xul
308-
"
309-
;
310283
/
311284
*
312285
*
@@ -1805,9 +1778,8 @@ br
18051778
.
18061779
parentNode
18071780
.
1808-
getElementsByTagNameNS
1781+
getElementsByTagName
18091782
(
1810-
XUL_NS
18111783
"
18121784
tabmodalprompt
18131785
"

0 commit comments

Comments
 (0)