Tagged Questions

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

learn more… | top users | synonyms

24
votes
9answers
12k views

“Convert web page to image”

I wonder if there is any way to convert a web page (from any given URL) into an image? this is basically equivalent to taking a "screenshot" of the page after opening it. There is a method to do it ...
19
votes
11answers
6k views

What's the difference between JavaScript and JScript?

I have always wondered what the heck is the difference between JScript and JavaScript.
13
votes
24answers
2k views

What is Web 3.0?

My boss asked me this yesterday just to gauge my response. Apparently, some of our clients are asking for "Web 3.0" I told him I really didn't know. He said when he's asked around the consensus is ...
11
votes
6answers
3k views

Is it possible to use jQuery to manipulate XUL elements?

I know its possible to integrate jQuery within mozilla addons, but are we able to manipulate (animate, move, adjust transparency, etc) xul elements themselves? From what I understand, the mozilla ...
9
votes
2answers
94 views

HTML/Javascript: remember scroll independent of the window size

I've got a webpage for reading books online. I'd like to save the position inside the document so when a user resumes his reading, he starts in the point where he previously was. I can get the scroll ...
9
votes
2answers
243 views

WebKit vs Mozilla vertical alignment of font glyphs in box

This test image shows how wildly different Safari positions text inside a box vs Firefox (Safari 5.0.5 and Firefox 5.0.1 for Mac OS X 10.6.7). Notice how the "S" for sans-serif is butted ...
9
votes
2answers
142 views

Javascript: What does the function given to setTimeout get called with?

I have code like this: setTimeout(foo, 600); I always thought that foo didn't take any arguments, e.g.: function foo() { /* bars */ } However, doing the following: function foo(a) { alert(a); ...
9
votes
3answers
557 views

Why “Mozilla” string is present on all browser's User Agent?

If you look on IE user agents you will see Mosilla string as well. Who knows why?
8
votes
1answer
1k views

What is the correct “-moz-appearance” value to hide dropdown arrow of a <select> element

I'm trying to style the dropdown arrow of a <select> element with CSS only , it works perfectly in Chrome/Safari: select { -webkit-appearance: button; -webkit-border-radius: 2px; ...
8
votes
5answers
2k views

Why do different browsers render the same HTML differently?

This is an html page : <html> <head> <title> Frame Set </title> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <link rel="stylesheet" ...
7
votes
3answers
415 views

any one tried Mozilla's programming language Rust Yet?

Mozilla is designing a new programming language called Rust , has anyone give it a try? what makes it different from other programming languages like C# if someone gave it a try tell us what you ...
7
votes
1answer
281 views

Is the vertical bar (|) valid CSS, or Firefox-specific?

I noticed this rule in Firebug: *|*:link { color:#0000EE; } I'm not sure that I've ever seen the vertical bar (|) before. It's in the about:PreferenceStyleSheet so it may be Firefox-specific. ...
7
votes
3answers
8k views

HTML Parsing Error

I can't find out what the problem is, and why I keep receiving this error in Internet Explorer 8, as it's the only error that I am receiving. Any thoughts as to what it means, or a simple solution? I ...
7
votes
3answers
5k views

Detect failure to load contents of an iframe

I can detect when the content of an iframe has loaded using the load event. Unfortunately, for my purposes, there are two problems with this: If there is an error loading the page (404/500, etc), ...
6
votes
2answers
89 views

Accessing Mozilla Certificates from Delphi

I would like to access certificates stored in Mozilla products (Firefox and Thunderbird) from a Delphi (XE) applicaiton. For start I would like to list them, next it would be nice to be able to manage ...
6
votes
1answer
93 views

How do I look under the covers and see how HTML is rendered?

For example: <input name="abutton" type="button" value="This is not a button" /> I know this gives me a button. But I also know that someone had to figure out how wide my text was, draw a ...
6
votes
8answers
773 views

Writing Efficient CSS

Sorry if this is waaayyy to basic of a question to be asked here. But here goes... Ok so in another question something was being discussed, and this link was mentioned: ...
6
votes
3answers
2k views

Beginning XUL & XPCOM development with XULRunner?

I am planning to design an application XUL & XPCOM for proprietary system. So i have decided to use C/C++ but how can I start the development as a beginner in this field I cannot find a good guide ...
5
votes
1answer
93 views

nsIGenericFactory.h is missing in the above version of xulrunner-2.0.en-US.win32.sdk

Previously, I created XPCOM dll for the mozilla version 3.6 and XulRunner version of 1.9.2. Now I try to update that xpcom dll for the mozilla recent versions namely 4 and above. So I downloaded Xul ...
5
votes
1answer
125 views

Add submenu in menupopup mozilla extension developmet??

Here I am working with firefox extension development. I have using XUL Overlays to add menu popup item in my extension. <menupopup id="menu_ToolsPopup"> <menuitem ...
5
votes
2answers
748 views

JavaScript Event Listeners for when the DOM changes

I'm writing a Mozilla Firefox Extension (Javascript without the BS of having to identify if it's IE or Firefox), where I find myself stuck in the following situation. On a page load, I add event ...
5
votes
1answer
385 views

Why chrome and IE put Mozilla 5.0 in the userstring they used to send request to server

When i myself send many request to the server and found a little thing amazing that in IE if i choose opera user string that the value of user string was User-Agent Opera/9.80 (Windows NT 6.1; U; ...
5
votes
3answers
288 views

Converting between physical pixels and CSS pixels

Mozilla's documentation from elementFromPoint explains that the coordinates are not in physical pixels, but "CSS pixels". Exactly what are CSS pixels? I was under the impression that a pixel in CSS ...
5
votes
5answers
3k views

Cookies in Firefox

Where does Firefox store cookies and in what format are they stored
5
votes
4answers
754 views

Open Source Profiling Frameworks?

Have you ever wanted to test and quantitatively show whether your application would perform better as a static build or shared build, stripped or non-stripped, upx or no upx, gcc -O2 or gcc -O3, hash ...
4
votes
1answer
4k views

CSS box shadow top-only in mozilla?

I have a footer on my web site, and I'd like to have a subtle shadow cast above it. The CSS looks like this: div.footer { -webkit-box-shadow: 0px 0px 7px $dark2; -moz-box-shadow: -7px 0px 7px ...
4
votes
1answer
476 views

How to listen to page loads from Fennec extension?

I'm working on a simple extension for Fennec, which must add special HTML element to every loaded page. I've created this simple overlay.js: var MyAddon = { onLoad: function(aEvent){ var ...
4
votes
3answers
380 views

What is the correlation between ECMAScript 5 and JavaScript 1.8.5 in terms of language features?

I've been reading up on Mozilla's continuing development of JavaScript, up through version 1.8.5: https://developer.mozilla.org/en/JavaScript. My question is: What is the correlation between ...
4
votes
2answers
501 views

How to detect a script load of a file:// URL fails in Firefox?

I want to detect if a script tag (that was dynamically created and added to the DOM) fails to load. The onerror event works, except with file:// URLs in Firefox. Unfortunately none of the techniques ...
4
votes
0answers
93 views

What does the bitwise operator >>> do in Mozilla's map() implementation? [closed]

Possible Duplicate: What is the JavaScript >>> operator and how do you use it? Mozilla's Array.prototype.map(), described in the Javascript 1.5 documentation, is implemented with ...
4
votes
1answer
278 views

How does Firefox Version 3 invoke the anti-virus feature on Windows to scan a download?

Another question on StackOverflow is asking how this is done, but the general question of how Firefox manages this is even more useful, and would answer that question also. Without reading all the ...
4
votes
1answer
208 views

Firefox: Is there a way to suspend reflow during heavy DOM manipulations?

I need to do heavy DOM manipulations on the whole document of webpages in an Add-On I write. I would like to minimize the reflows so only one reflow happens for all my manipulations. Removing the body ...
4
votes
4answers
732 views

Why do mozilla and webkit prepend -moz- and -webkit- to CSS3 rules?

CSS3 rules bring lots of interesting features. Take border-radius, for example. The standard says that if you write this rule: div.rounded-corners { border-radius: 5px; } I should get a 5px ...
4
votes
1answer
433 views

Firefox: Signed script shows scary certificate dialog

The context: I'm writing JavaScript to run an executable and tweak some registry entries on the client machine. I've signed the .JAR using SignTool and my company's Authenticode certificate, but ...
4
votes
3answers
1k views

how does jemalloc work? what are the benefits?

Firefox 3 came with a new allocator: jemalloc I have heard at several places that this new allocator is better. The top Google results don't gave any further information though and I am interested in ...
4
votes
2answers
2k views

What's a good embedded browser for a pygtk application?

I'm planning on using an embedded browser in my pygtk application and I'm debating between gtkmozembed and pywebkitgtk. Is there any compelling difference between the two? Are there any third ...
4
votes
5answers
3k views

a:visited doesn't work in Mozilla Firefox

I have created a link and when I try to set the style; a:visited { text-decoration: underline; color: #FF0000; } It doesnt seem to work. It works fine in IE. I have also followed the order; ...
4
votes
3answers
2k views

How can I get the window object that an HTML node belongs to using JavaScript?

Because of several iframes, XUL browser elements, and so forth, I have a number of window objects in my XULRunner application. I'm looking for the best way to find the window object that a specified ...
3
votes
1answer
181 views

Why does Internet Explorer (9) report “Mozilla” in UserAgent?

Why is Internet Explorer has Mozilla in UserAgent In Firefox it is stating, Mozilla/5.0 (Windows NT 6.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1 In Interner Explorer it is stating, ...
3
votes
5answers
620 views

Is WebRTC implemented in any browsers yet?

Is WebRTC implemented in any browsers yet? Nightly builds? Thanks for any info.
3
votes
1answer
459 views

Automatically Save File Dialog with Ruby / AutoIt / Watir

Ok, I am trying to use Watir/Ruby/AutoIt to automatically download a file. So say the dialog below pops up, my goal is to automatically click Save File, and then hit Ok. If someone could provide an ...
3
votes
1answer
289 views

Execute JS from Firefox extension

I'm trying to execute custom JS code from a Firefox extension using: function executeJS(document, script) { var script = document.createElement('script'); script.setAttribute('type', ...
3
votes
2answers
491 views

How to get the current Firefox profile path from within my applet

I'm using Network Security Services for Java (JSS) by Mozilla in my applet in order to allow some low-level interaction between my (signed) Java Applet and Mozilla Firefox. One of the first problem ...
3
votes
1answer
182 views

How can I override skin's settings through code?

I have a firefox extension that changes a browser's tab color like this: tabBrowser.tabContainer.childNodes[i].style.backgroundColor = "#8f8"; This code works fine in my development profile, but in ...
3
votes
4answers
542 views

Mozilla (Firefox, Thunderbird) Extension: How to get extension id (from install.rdf)?

If you are developing an extension for one of the mozilla applications (e.g. Firefox, Thunderbird, etc.) you define a extension id in the install.rdf. If for some reason you need to know the ...
3
votes
1answer
347 views

Weak reference in Firefox JavaScript chrome code

Suppose I'm writing a class A in my Jetpack-based library (i.e. we're talking about chrome/extension code): function A() { //constructor } A.prototype = { //class members }; The user creates an ...
3
votes
0answers
151 views

Direct3D app screws up XULRunner

I have an app using a render engine which can switch between D3D and OpenGL (on Windows at least!) We also use XULRunner for embedded web-browser functionality. XULRunner also appears to use D3D and ...
3
votes
2answers
902 views

CSS Border for checkbox

I am applying a style for a checkbox from jQuery $("#reg_checkbox").css("border","thin solid red"); The border works fine in IE but not in mozilla , how can I make it browser compatible ?
3
votes
2answers
215 views

Some browsers not recognizing meta tags added via Javascript

I'm making some examples for javascript; they are not really usable. This one is interesting - it works on Chrome (and other using webkit), and Safari. So can someone suggest any reason why it is not ...
3
votes
1answer
93 views

Help me with my first Mozilla Extension

I am new to Mozilla extensions and i have been trying to build the "hello world" following this tutorial https://developer.mozilla.org/en/Building_an_Extension but unfortunately its not showing ...

1 2 3 4 5 11