mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 606388 - Re-enable browser_popupUI.js. It is trying to use == to compare an Xray wrapper with a SJOW. r=jst
This commit is contained in:
parent
4f00dab2ab
commit
f93c39ea90
@ -205,6 +205,7 @@ _BROWSER_FILES = \
|
|||||||
browser_clearplugindata.js \
|
browser_clearplugindata.js \
|
||||||
browser_clearplugindata.html \
|
browser_clearplugindata.html \
|
||||||
browser_clearplugindata_noage.html \
|
browser_clearplugindata_noage.html \
|
||||||
|
browser_popupUI.js \
|
||||||
browser_sanitizeDialog.js \
|
browser_sanitizeDialog.js \
|
||||||
browser_scope.js \
|
browser_scope.js \
|
||||||
browser_selectTabAtIndex.js \
|
browser_selectTabAtIndex.js \
|
||||||
@ -249,9 +250,6 @@ _BROWSER_FILES = \
|
|||||||
test_bug628179.html \
|
test_bug628179.html \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
# compartment-disabled
|
|
||||||
# browser_popupUI.js \
|
|
||||||
|
|
||||||
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||||
_BROWSER_FILES += \
|
_BROWSER_FILES += \
|
||||||
browser_bug462289.js \
|
browser_bug462289.js \
|
||||||
|
@ -21,7 +21,7 @@ function findPopup() {
|
|||||||
|
|
||||||
while (enumerator.hasMoreElements()) {
|
while (enumerator.hasMoreElements()) {
|
||||||
let win = enumerator.getNext();
|
let win = enumerator.getNext();
|
||||||
if (win.content == content.wrappedJSObject.popup) {
|
if (win.content.wrappedJSObject == content.wrappedJSObject.popup) {
|
||||||
testPopupUI(win);
|
testPopupUI(win);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user