Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

browser.windows.create() doesn't paint popup #3

Closed
bunnybooboo opened this issue Sep 30, 2017 · 7 comments
Closed

browser.windows.create() doesn't paint popup #3

bunnybooboo opened this issue Sep 30, 2017 · 7 comments
Assignees

Comments

@bunnybooboo
Copy link

Flagging for your attention. Behaviour seen in 57 (Beta 57.0b4) and 58 (Nightly build id 20170930100302). Bug already submitted so shared specifics from this WebExtension to assist their further investigation. https://bugzilla.mozilla.org/show_bug.cgi?id=1402110#c3

@pal1000
Copy link
Contributor

pal1000 commented Nov 9, 2017

Workaround:


document.addEventListener("DOMContentLoaded", (event) => {
    // Fix for Fx57 bug where bundled page loaded using
    // browser.windows.create won't show contents unless resized.
    // See https://bugzilla.mozilla.org/show_bug.cgi?id=1402110
    browser.windows.getCurrent((win) => {
        browser.windows.update(win.id, {width:win.width+1})
    })
});

ettoolong added a commit that referenced this issue Nov 11, 2017
@ettoolong
Copy link
Owner

Add workaround in version 0.0.15.

@pal1000
Copy link
Contributor

pal1000 commented Nov 11, 2017

@bunnybooboo please re-test this with 0.0.16.

@bunnybooboo
Copy link
Author

bunnybooboo commented Nov 12, 2017

Firefox Nightly (58)
Build ID: 20171111220358
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0
OS: Linux 4.13.11-1-ARCH

  • Bug reproducing

Firefox Beta (57)
Build ID: 20171109183137
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:57.0) Gecko/20100101 Firefox/57.0
OS: Linux 4.13.11-1-ARCH

  • Bug reproducing

@bunnybooboo
Copy link
Author

Firefox Release (56)
Build ID: 20171024165158
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/56.0
OS: Linux 4.13.11-1-ARCH

  • Bug NOT reproducing

@bunnybooboo
Copy link
Author

Observed fix in that other repo aecreations/clippings@746b7b8

ettoolong added a commit that referenced this issue Nov 18, 2017
@ettoolong ettoolong self-assigned this Nov 26, 2017
@bunnybooboo
Copy link
Author

Yay!! Fixed!! Thanks for your efforts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants