Open
Bug 762400
Opened 13 years ago
Updated 3 years ago
javascript: URL doesn't work when ''most visited'' page is displayed
Categories
(Toolkit :: General, defect)
Tracking
()
NEW
People
(Reporter: benoit-bailleux, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20120604 Firefox/14.0a2
Build ID: 20120604042007
Steps to reproduce:
Usie bookmarklet (with its keyword) or directly a "javascript:" URL while the "most visited" page is displayed
Actual results:
Nothing, and the console contains an error message (depending on the exact value of the javascript: URL) like:
"Horodatage : 07/06/2012 09:47:18
Erreur : uncaught exception: ReferenceError: window is not defined"

or 
"Horodatage : 07/06/2012 09:49:05
Erreur : uncaught exception: ReferenceError: alert is not defined"
Expected results:
The JS code should have been executed (and the target page loaded).
With a bookmarklet, the behaviour is as expected if "about:blank" is displayed instead of "about:newtab"
Reporter | ||
Updated•13 years ago
|
Severity: normal → minor
Summary: javascript: URL doesn't work when "most visited" page is displayed → javascript: URL doesn't work when ''most visited'' page is displayed
Comment 1•10 years ago
|
||
This is still a problem in Firefox 41.0.1. It is now worse since due to Bug 1118285 it is no longer possible to use browser.newtab.url to set the newtab url to something else that allows JavaScript (e.g. about:blank).
This prevents common power usage scenario of opening a new tab and then looking up resources based on e.g. an ID using JavaScript.
Comment 2•10 years ago
|
||
A workaround described here solves this in Firefox 41.0.1: http://forums.mozillazine.org/viewtopic.php?f=23&t=2944193
The workaround: Put the following in your mozilla.cfg file
var newTabURL = "about:blank";
Components.utils.import("resource:///modules/NewTabURL.jsm");
NewTabURL.override(newTabURL);
// you can use this to save a copy to browser.newtab.url
pref("browser.newtab.url",NewTabURL.get());
Comment 3•10 years ago
|
||
@Reporter - We are cleaning up our list - is this still an issue? Is FF still 41.0 or have you applied upgrade? Thanks.
Component: Untriaged → General
Flags: needinfo?(benoit-bailleux)
Product: Firefox → Toolkit
Reporter | ||
Comment 4•10 years ago
|
||
(In reply to Michelle Funches - QA from comment #3)
> @Reporter - We are cleaning up our list - is this still an issue?
Yes, still an issue.
> Is FF still 41.0 or have you applied upgrade? Thanks.
I'm using Firefox Developer Edition (now v44.0a2) and the issue is still present.
Flags: needinfo?(benoit-bailleux)
Updated•10 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 5•7 years ago
|
||
Hello, is this bug still available to work on? If not, can you assign me to fix this bug?
Updated•3 years ago
|
Severity: minor → S4
You need to log in
before you can comment on or make changes to this bug.
Description
•