Questions tagged [mozilla]

DO NOT USE THIS TAG, it is going to be removed. The Mozilla Foundation is a non-profit organization that exists to support and provide leadership for the open source Mozilla project.

DON'T USE THIS TAG, it is going to be burninated.

The Mozilla Foundation is a non-profit organization that exists to support and provide leadership for open source Mozilla projects.

Mozilla Firefox is a free, browser built by Mozilla Foundation and Mozilla Corporation, first released in 2002 as 'Phoenix', becoming 'Firefox' in 2004.

1724 questions
8
votes
5 answers

Is WebRTC implemented in any browsers yet?

Is WebRTC implemented in any browsers yet? Nightly builds? Thanks for any info.
fancy
  • 48,619
  • 62
  • 153
  • 231
8
votes
2 answers

content security policy frame-ancestors

I'm trying to load my content into an IFrame, so I implemented the Content-Security-Policy header: Content-Security-Policy: frame-ancestors http://*.example.com/abc.html. I am able to load the content on iframe when I give the header…
8
votes
1 answer

Disable sameSite cookie policy in Firefox (developer edition)

There's cases I when I want to run my front end as localhost and have it connect to a remote server for API requests. However, when trying to set cookies, Firefox won't allow it in cases where sameSite="Lax". It shows: "Some cookies are misusing the…
Tim Daubenschütz
  • 2,053
  • 6
  • 23
  • 39
8
votes
5 answers

how to get mozilla like firebug console in chrome?

the firebug console show each ajax request, and its parameters and the response, is it possible to get this in chrome ?
Omu
  • 69,856
  • 92
  • 277
  • 407
8
votes
1 answer

Firefox source code analysis; lines of code per component

I am currently trying to analyse Bugzilla in order to find the ratio of number of bugs : lines of code for each Firefox component. However, I have never worked with Bugzilla before and have no knowledge of Firefox's codebase. How would I go about…
Fraser Price
  • 899
  • 6
  • 15
  • 36
8
votes
1 answer

Enable Web Speech API on Mozilla Firefox

I've been working with the voice/speech synthesis on Chrome and then I realized Firefox doesn't allow it by default and special permissions must be granted. By reading this article I could make the test…
Victor Ferreira
  • 6,151
  • 13
  • 64
  • 120
8
votes
3 answers

Gecko build failed error : Could not find autoconf 2.13., but autoconf already installed

I am trying to build Gecko Code, Which I have clone from Github : git clone https://github.com/mozilla/gecko-dev.git and I am getting autoconf 2.13 not found error, Which already installed in my Mac Machine: Tom-Swayer:gecko-dev vmishra$ autoconf…
Vinay Mishra
  • 386
  • 2
  • 15
8
votes
2 answers

How to prevent Bootstrap's glyphicon rendering to emoji (Opera, FF)?

I would like to know how to prevent showing emojis from bootstrap's glyphicons? This Renders to this (opera, moz) I Stumbled across…
kristjan reinhold
  • 2,038
  • 1
  • 17
  • 34
8
votes
0 answers

"MIMEParsingException: Missing start boundary" exception happening only in Chrome Browser, Firefox works fine during Jersey fileUpload

FYI, I have the following jersey jars in my app's classpath along with the mimepull jar version…
8
votes
2 answers

pdf.js : how to properly set the initial scale?

I'm try to adapt pdf.js (complete version) to my needs, I just want to set the initial scale to 'page-fit' whatever the previous scale. So I try to modify viewer.js to achieve this ... First the DEFAULT_SCALE global (line 27) is ignored, it seems…
jeum
  • 1,048
  • 3
  • 13
  • 29
8
votes
4 answers

IE 11 browser recognizes itself as Mozilla

I am working on MVC application, .net 4.5 framework, VS 2010. I have a piece of Javascript code that identifies which browser the application is running. If the browser is Firefox then a particular block of code will be executed if not another…
BumbleBee
  • 10,429
  • 20
  • 78
  • 123
8
votes
8 answers

Writing Efficient CSS

Ok so in another question something was being discussed, and this link was mentioned: https://developer.mozilla.org/en/Writing_Efficient_CSS In that article, they say some things I didn't know, but before I ask about them, I should ask this... Does…
Ian Storm Taylor
  • 8,520
  • 12
  • 55
  • 72
8
votes
1 answer

How do JavaScript versions correlate to ECMAScript versions?

For example, [].map was "implemented in JavaScript 1.6." Is that an ES5 method? How does the 1.6 correlate to an ECMAScript version?
ryanve
  • 50,076
  • 30
  • 102
  • 137
7
votes
2 answers

Finding the tab associated with a DOM window

I'm adding some new functionality in a Firefox extension, TryAgain, that traps HTTP error codes (e.g. 500) and automatically retries loading the page after some interval. Trapping the codes works excellently, and I'm trying to tally the total number…
Paul Lammertsma
  • 37,593
  • 16
  • 136
  • 187
7
votes
1 answer

Parse addon id from mozilla.rsa file

I am trying to read mozilla.rsa file and parse the addon Id using C++. My effort: std::string rsaPath = xpiDir + "\\META-INF\\mozilla.rsa"; int rets = system(("CertUtil " + rsaPath + " | findstr " + "S=CA").c_str()); // ..... My additional…
Jayesh
  • 4,755
  • 9
  • 32
  • 62