Tagged Questions
6
votes
2answers
520 views
Firebug not showing stack trace for errors?
I have noticed that even with "show stack trace with errors" enabled from the drop down, only errors that occur seem to have traces, but when I do: throw new Error('foo'); I do not see any stack trace ...
4
votes
8answers
222 views
What's the best way to cycle through a large number of fixed position images in WebKit efficiently?
I'm currently working on a little site for my family. One of the things I wanted to do was to make a basic 'making of' stop-motion video. I could assemble it and upload it to Vimeo or something but I ...
4
votes
2answers
345 views
Embed Firefox/Gecko in WPF/C#
i want to embed the current Gecko in my WPF-Project.
i know there is the possibility with the Winforms-Host and the Skybound-Gecko-Libary.
But i use not the standard wpf-theme für my application. its ...
4
votes
2answers
332 views
moz-transform scale decrease div size problem
I'm having problems with mozilla moz-transform scale property.
I'm looking for a replacement of the zoom property, which works fine in everything except firefox.
When I want to shrink the div, its ...
4
votes
1answer
2k views
How do I embed a Gecko or FireFox browser into a VB.NET application?
I am having some problems trying to embed Gecko or Firefox into my VB.net application - specifically when running on Vista or Windows 7. Is this possible to do? Or should I look for a different ...
4
votes
2answers
3k views
What is -moz-use-text-color?
I understand it's deprecated in FireFox, and its replacement is currentColor. My impression is that it's used for SVG-related stuff. But what the heck is it? :)
4
votes
4answers
2k views
Firefox/Gecko control interfering with Windows Forms key presses
Edit: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. Here is a simple test project (Visual Studio 2008 C#) that reproduces the problem.
...
4
votes
1answer
655 views
Implementing nsIProtocolHandler with Delphi
I'm trying to build an nsIProtocolHandler implementation in Delphi. (I've done an IInternetProtocol before with success, and want to have in FireFox what I've got in Internet Explorer.)
Thanks to the ...
4
votes
3answers
3k views
Disappearing CSS table cell borders in Gecko-based browsers
I have a very specific html table construct that seems to reveal a Gecko bug.
Here's a distilled version of the problem. Observe the following table in a gecko-based browser (FF, for example): ...
3
votes
5answers
645 views
Browser Cache API for non IE browsers
IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache.
Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?
...
2
votes
2answers
47 views
Buttons too tall on Firefox
I've got a problem unique to Firefox. I'm trying to style links and buttons to look exactly the same. On every browser except Firefox, this works as desired. On Firefox, the height of the button's ...
2
votes
1answer
140 views
What are the basic differences differences between the browsers powered by Gecko and by those powered by Webkit?
I wanted to know about the basic differences between the browsers powered by Gecko and Webkit?
- Are there any differences in the way they render?
- Any difference in the mechanism they use to render?
...
2
votes
1answer
376 views
document.getElementsByName missing from Gecko/Firefox on SVG documents
I have an SVG document in which I am using JavaScript to highlight elements on mouseover. My elements all have names - some elements have the same name because, although they appear multiple times, ...
2
votes
1answer
123 views
-moz-column doesn't work correctly with rtl direction
I have a div container with fixed height , fixed width and overflow hidden
I need to display text in 4 columns
The problem is :
with direction 'rtl' , firefox display the latest 4 columns and hide ...
2
votes
2answers
1k views
Gecko 2 ActiveX Control VCL component in Delphi?
How can I import the Gecko 2 (used in Firefox 2) Active control into the component palette so I can add it to my form at design-time?
Basically, I want something like a TWebBrowser component, but not ...
2
votes
2answers
478 views
Firefox Gecko SDK : NPP_GetValue not getting called
I have tried out the NPRuntime sample provided with the Gecko SDK 1.9.1 with the help of this link.
It works perfectly fine with Firefox 3.6.
Following the above steps I created a new scripting ...
2
votes
1answer
143 views
Adding entry to Firefox cache from an XPCOM component
The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object ...
2
votes
2answers
306 views
nsIProtocolHandler: trouble loading image for html page
I'm building an nsIProtocolHandler implementation in Delphi. (more here)
And it's working already. Data the module builds gets streamed over an nsIInputStream. I've got all the nsIRequest, nsIChannel ...
2
votes
1answer
791 views
Accessing Firefox cache from an XPCOM component
Does anybody know how to get local path of file cached by Firefox based on its URL from an XPCOM component?
1
vote
1answer
62 views
firefox goes wrong about the width when initialized !
In Gecko apps, firefox as well as xulrunner.
I can't make the app start with the correct width.
My javascript code is as follows;
$(function(){
function stageInitial(){
var stageWidth = ...
1
vote
0answers
53 views
Is Blob read-only (for example in Firefox 6)?
Tried to add custom property (name) onto a Blob object, but got no result. As if Blob was read-only. Is it?
UPDATE:
// file variable populated somewhere here...
var blob = file.mozSlice(0, 256);
...
1
vote
2answers
55 views
Determining the bounding rectangle of Mozilla 4's content region
In versions of Firefox prior to 4, the web content was contained in a window of class "MozillaContentWindowClass". In the newer versions, the entire window is content-based, including toolbars, etc. ...
1
vote
3answers
115 views
this.dataset works under Chrome now, is it going to be supported by FF too?
We are using data- prefix in our html tags to attach some data to our elements. We can get that data by this.dataset property in Chrome and as we are too lazy to check if our functions work under ...
1
vote
2answers
449 views
Is there a Gecko equivalent to -webkit-mask or a fancy way of degrading for Gecko browsers?
I'm looking for a solid answer on whether or not there is an equivalent to -webkit-mask in Gecko browsers/Firefox?
If not, is there any way of degrading -webkit-mask in CSS to a straight ...
1
vote
2answers
274 views
Can I get an image's file size and mime-type via JavaScript (FireFox/Gecko/Mozilla only)
Can I get an image's file size and mime-type via JavaScript. I am writing a script for inspecting all images in a document. I will run the script in FireFox only so a solution specific to FireFox ...
1
vote
1answer
216 views
How can I add a recurring timer to a firefox addon?
I am trying to create an addon with the new addons builder preview (https://builder.addons.mozilla.org/), and I need a function to run about once every 10 minutes. I have tried both setInterval and ...
1
vote
1answer
168 views
Gecko(Firefox 3.6/4beta) Hides Div While Webkit(Chrome/Dreamweaver) Displays Just Fine
I've ran into a snag I've been working on for a couple days and can't seem to come up with an answer online. The site template I'm working on now is located at "http://citylakersbaseball.org/2.0" - ...
1
vote
3answers
600 views
CSS box-shadow issues
I'm building this page: http://ss.rsportugal.org/
As you can see, there are two 10 pixel shadows in the page. One just bellow the menu and the other just above the footer bar.
These shadows are made ...
1
vote
1answer
206 views
How to save a tab's memory state in Firefox/Chrome?
I want to be able to save a tab's state in Firefox or Google Chrome so that I can restore it later, through writing a custom add-on/plug-in/extension.
The closest thing I can find is Firefox's ...
1
vote
1answer
495 views
How can I enable child inputs text selection in Mozilla Firefox using CSS?
Let's consider the following scenario. I have the following page where all rendered elements must be non-selectable.
<html>
<head>
<style type="text/css">
body {
...
1
vote
1answer
498 views
Is it possible to delete or invalidate gecko / firefox session without closing browser?
Is it possible, using the gecko / firefox XPCOM interfaces, to delete or invalidate a user's active session without closing the browser? I am using Gecko embedded (specifically GeckoFX) in an ...
1
vote
1answer
194 views
Firefox (Gecko) code - interrogating the cache - how do I get a list of devices?
Referring to nsICacheService (https://developer.mozilla.org/en/NsICacheService) and nsICacheVisitor (https://developer.mozilla.org/en/nsICacheVisitor):
Where do I get an instance of nsICacheVisitor?
...
1
vote
1answer
941 views
Writing a Firefox XPCOM plug-in with a native window interface? (like ActiveX control)
I have an ActiveX control that works fine in Internet Explorer and the ActiveX Control Test Container program. The actual behavior of the control is split in two parts, where one part is the ATL gunk ...
0
votes
0answers
15 views
Listener to addon enabling in Firefox?
How can I find out when my addon is enabled on Firefox? My current code handles enabling before Firefox restarts, but fails to if Firefox is restarted, because the script isn't loaded anymore. I tried ...
0
votes
1answer
32 views
Webkit adding unwanted, additional space above single text character
Have a situation where I am adding a single character in a div with a button background. Seems pretty straight forward. However, the text placement is different between FF and Safari / Chrome. I ...
0
votes
1answer
158 views
Why doesn't IE's caret position in a text input equal the string index? What's the workaround?
I'm not surprised, but I've discovered that IE8 behaves very differently than Chrome and Firefox with respect to retrieving the caret position from a text <input> or <textarea>. Whereas ...
0
votes
1answer
53 views
Dynamic generation of stylesheets added to Firefox?
One can use the nsIStyleSheetService in Firefox to load and register stylesheets which apply in a similar way to userstyle.css; they are applied to every page loaded. However, this service takes ...
0
votes
3answers
180 views
transition effects not happening in Firefox and Opera
i tried to create a drop down menu effect using transition effects in css3 .the effects were not being produced in firefox and opera although it was in safari and chrome
for transition i used
...
0
votes
1answer
283 views
In Gecko 2.0 (Firefox 4) how do you interact with (send windows messages to) a tab that is not currently focused?
Say your automating Firefox, and you want to do crazy things like, emulating a raw keystroke typing 'return' but to a tab window that is not currently in focus/active/ontop.
Using ideas in
...
0
votes
1answer
122 views
Is “-moz-box-shadow” supported by Firefox / Gecko only recently?
How well is -moz-box-shadow supported by Firefox? I thought I heard of it for quite some time but the page
https://developer.mozilla.org/en/css/-moz-box-shadow
says that it is not supported ...
0
votes
2answers
353 views
Javascript submit() event is not fired up on exit (unload event)
I got page where HTML elements <form> and <iframe> are dinamicaly created with Javascript:
document.write('<iframe id="myIframe" name="myIframe" src="about:blank" ...
0
votes
1answer
323 views
Firefox/Gecko unable to animate transform=“rotate(…)” in SVG?
In the page I'm working on, when the user clicks on an object, one SVG group rotates out of the way while another rotates in.
The code as it is works just fine in WebKit, but it isn't working at all ...
0
votes
2answers
375 views
Firefox 3.0 CSS Drop Shadows
What is a technique to add drop-shadows to text that would work in Firefox 3.0?
FF3.5 and Chrome support the CSS3 property drop-shadow:
p { text-shadow: #000 2px 5px; }
IE6, 7, 8 support filters:
...
0
votes
3answers
240 views
Firefox: If needs spellcheck? [closed]
Possible Duplicate:
Javascript: I have a custom right-click menu but still want the spellcheck!
Is there a JS property or command to see if a word is underlined in red (ie. needs to be ...
0
votes
1answer
1k views
How to add elements to web page from Firefox extension
I'm going to develop a Firefox extension which should put a button in the loaded pages, when the tag: <input type="file" ... > is found and a file has been selected.
Likewise, I think the skype ...
0
votes
1answer
134 views
Why doesn't “:active” work properly inside a Gecko frame?
It seems to me that Gecko has a bug involving ":active". To illustrate, put this into a file called test.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" ...