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.html \
|
||||
browser_clearplugindata_noage.html \
|
||||
browser_popupUI.js \
|
||||
browser_sanitizeDialog.js \
|
||||
browser_scope.js \
|
||||
browser_selectTabAtIndex.js \
|
||||
@ -249,9 +250,6 @@ _BROWSER_FILES = \
|
||||
test_bug628179.html \
|
||||
$(NULL)
|
||||
|
||||
# compartment-disabled
|
||||
# browser_popupUI.js \
|
||||
|
||||
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||
_BROWSER_FILES += \
|
||||
browser_bug462289.js \
|
||||
|
@ -21,7 +21,7 @@ function findPopup() {
|
||||
|
||||
while (enumerator.hasMoreElements()) {
|
||||
let win = enumerator.getNext();
|
||||
if (win.content == content.wrappedJSObject.popup) {
|
||||
if (win.content.wrappedJSObject == content.wrappedJSObject.popup) {
|
||||
testPopupUI(win);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user