When will opencl become standard in firefox ?
I know GPU.js and works pretty well. But I am still waiting for OpenCL in Firefox. So webCL, as webGL is already there, but why not webCL ? There is something with node-w… (閱讀更多)
I know GPU.js and works pretty well. But I am still waiting for OpenCL in Firefox. So webCL, as webGL is already there, but why not webCL ? There is something with node-webcl or the like this. Do I have to install something alongside with the firefox installation ?
Regards Thorsten Kiefer
Can I use Firefox web browser with the Google backup and sync program
I have the google backup and sync app that sync to google drive, photos etc. I was told in order for this to work properly, I shoould use Google Chrome as my web browser… (閱讀更多)
I have the google backup and sync app that sync to google drive, photos etc. I was told in order for this to work properly, I shoould use Google Chrome as my web browser. Can I use Firefox as my web browser? Joe
How do I change my wallpaper?
I was conversing with this person from India and when our visit ended, I noticed that the sweet picture of my grandkids was gone and it was replaced with a nature scene. … (閱讀更多)
I was conversing with this person from India and when our visit ended, I noticed that the sweet picture of my grandkids was gone and it was replaced with a nature scene. Now I don't have anything against nature.....but it is not my choice. How do I change it?
What do cookie permission values mean in permissions.sqlite?
I want to export my cookie permissions either through a WebExtension or a script outside of Firefox. I'm looking at the `moz_perms` table in my permissions.sqlite, and I … (閱讀更多)
I want to export my cookie permissions either through a WebExtension or a script outside of Firefox.
I'm looking at the `moz_perms` table in my permissions.sqlite, and I see three values for `permission` for entries of `type` "cookie":
- 1: Keep cookies permanently
- 2: Block all cookies
- 8: Keep cookies for session
As I review the Firefox codebase, I see the following in nsIPermissionManager.idl:
const uint32_t EXPIRE_NEVER = 0; const uint32_t EXPIRE_SESSION = 1; const uint32_t EXPIRE_TIME = 2; const uint32_t EXPIRE_POLICY = 3;
Obviously, that doesn't match up at all, so I'm probably looking at the wrong thing. I've been a user of Self-destructing cookies if that makes any difference.
Where can I find code or documentation on meaning of the `permission` field for entries of `type` "cookie" in the `moz_perms` table of permissions.sqlite? Is there a better or existing means of exporting cookie settings like this?
What syntax does the search feature in Developer tools use?
The search boxes in the inspector window window returns no results whenever I try to search for specific key-value pairs like: role="main". I can only get results for ma… (閱讀更多)
The search boxes in the inspector window window returns no results whenever I try to search for specific key-value pairs like: role="main".
I can only get results for main or role. Is there a search string parameter/syntax reference anywhere? I've searched high and low, but articles/references found in the documentation is VERY basic.
Thanks
I am a software QA tester and wanting to learn about testing web apps. How can I volunteer, to learn more?
I did not know where else to go, the "Volunteer" button brought this direction. What things do I need to know for testing? I have manually tested web-based apps in Qualit… (閱讀更多)
I did not know where else to go, the "Volunteer" button brought this direction. What things do I need to know for testing? I have manually tested web-based apps in Quality Assurance for two years, but no real coding skill-set as of yet. I figured I would learn more by volunteering, but there are so many options. I would appreciate the basics cover across the board for starters. Thank you
FF 63.0: Rendering a site fails after dynamically changing the css property "display" via jquery
Hello community, after updating my FF from 62.03 to 63.0, I experience a strange behaviour. I use the css properties "display:none" and "display:table-cell" to dynamical… (閱讀更多)
Hello community, after updating my FF from 62.03 to 63.0, I experience a strange behaviour. I use the css properties "display:none" and "display:table-cell" to dynamically show and hide table columns. Prior to FF 63.0 everything worked excellent. But now, after hiding columns (by altering the css property form "display:table-cell" to "display:none"), the table and its content is displayed properly but some of the cells are missing their defined background colour. As soon as doing some action which forces a redraw of the window (e.g. resize the window or scroll the window), the complete table is diplayed properly . In order to give an impression feel free to have a look at the attached images Pre-Collapsed-Table.png, Collapsed-Table.png and Expected-Collapsed-Table.png. Meanwhile I have been playing with the "visibility" attribute in order to get the desired result. Unfortunately this is not suitable because hidden elements take up space on the page.
Is it a bug in FF 63.0? What can I do to get the previous and expected behaviour? Any ideas? Thanks in advance.
With 'Never remember history' setting sessionstorage and localstorage are cleared between redirects. Why?
I am a web application developer. My application is using open authentication. As part of the login process the application stores information in the session storage of t… (閱讀更多)
I am a web application developer. My application is using open authentication. As part of the login process the application stores information in the session storage of the browser. Then the user is redirected to a login page. When, after a successful login, the user is redirected back, the information in the session storage is gone. The same problem when I use local storage.
This problem only occurs with the setting: Never remember history.
Is this a bug or a feature?
Other browsers do not have this behavior.
javascript using class selectors opens new tab
I have a page using javascript to filter div's depending on a selection criteria. On Safari and Chrome, the filtering works just fine. Bit onFirefox (the latest version) … (閱讀更多)
I have a page using javascript to filter div's depending on a selection criteria. On Safari and Chrome, the filtering works just fine. Bit onFirefox (the latest version) instead of seeing the filtered list I see a new tab, titled About:
The attached images show the sequence, screen1 and then screen2 then screen3. I should see screen1 with a subset of the divs in the scrolling section.
The javascript is:
function TLSshowhide(tlsclassname) { /* first, hide all responsive div's */ var y = window.frames['theinterviewsdataframe']; var z = y.document.getElementById('theinterviewsdata'); var x = z.getElementsByClassName('responsive'); var i; for (i = 0; i < x.length; i++) { x[i].style.display = 'none'; } /* then, show the responsive div's with the selected classname */ x = z.getElementsByClassName(tlsclassname); for (i = 0; i < x.length; i++) { x[i].style.display = 'initial'; } } /* When the user clicks on the artist button, show all responsive div's */ function showArtist() { /* when showing the artists, show all responsive div's */ var y = window.frames['theinterviewsdataframe']; var z = y.document.getElementById('theinterviewsdata'); var x = z.getElementsByClassName('responsive'); var i; for (i = 0; i < x.length; i++) { x[i].style.display = 'initial'; } }
You can see this in action for yourself by going to http://cultconv.com/CultConv20181030/theinterviews.html and clicking the By Artist button
The list of DIV's being displayed is found in http://cultconv.com/CultConv20181030/theinterviewsdata.html
All help appreciated.
bobj
Date function returns the date with a day lesser in firefox
new Date("10/29/2018") Return output:Date 2018-10-28T18:30:00.000Z
Open a IE window from parent page launched using Firefox
We have an application that was integrated with several other legacy applications in the organization. We started upgrading our application to HTML 5 standards to make it… (閱讀更多)
We have an application that was integrated with several other legacy applications in the organization. We started upgrading our application to HTML 5 standards to make it work with all modern browsers such as Firefox, Chrome and Edge. Now the problem is that, our application has redirect links to 3 to 5 legacy applications that were coded for IE 7 and no where in the migration path. When the users click on these links while working on our application, Firefox opens a blank page, making them as blockers for our application uplift. 1) is there a way to force a link to open in IE while the parent page is launched using Firefox ? I have seen this link : https://stackoverflow.com/questions/43615678/force-a-link-in-i-e-to-open-in-firefox , but this is for the opposite requirement...open Firefox from IE. 2) how do you run applications requiring .cab files on Firefox ? if there is an answer for this, we don't need to worry about #1.
Thanks.
'Abort error' when changing HTML5 video's time
When changing the a video element on HTML5 in Firefox Quantum (60.3.0esr) an ambiguous 'Abort Error' is thrown at times. I have created a JSFiddle to replicate this: http… (閱讀更多)
When changing the a video element on HTML5 in Firefox Quantum (60.3.0esr) an ambiguous 'Abort Error' is thrown at times. I have created a JSFiddle to replicate this: https://jsfiddle.net/tehsurfer/9ahz5rmd/55/
texting
Does Gmail have the ability to send and receive text messages.
I need to know when Firefox last updated itself
I need to know when Firefox last updated itself. The about page has: Version 63.0, first offered to Release channel users on October 23, 2018. I am testing using geckodri… (閱讀更多)
I need to know when Firefox last updated itself. The about page has: Version 63.0, first offered to Release channel users on October 23, 2018. I am testing using geckodriver.exe & everything has suddenly stopped working. Last worked 29/10/2018 at 17:00.
mozilla browser not supporting kep up event properly
please check attachment used code here, onkeypress = "return taLimit(250)", onkeyup = "return taCount(spcl,250)" <script language="javascript"> function taLimit… (閱讀更多)
please check attachment
used code here, onkeypress = "return taLimit(250)", onkeyup = "return taCount(spcl,250)"
<script language="javascript">
function taLimit(maxLength) { var taObj = event.srcElement; if (taObj.value.length === maxLength * 1) return false; } function taCount(visCnt, maxLength) { var taObj = event.srcElement; if (taObj.value.length > maxLength * 1) taObj.value = taObj.value.substring(0, maxLength * 1); if (visCnt) visCnt.innerText = maxLength - taObj.value.length; }
</script>
How do I find a documented list of Firewall settings and router settings
In order to satisfy PCI DSS compliance for my small business I need to supply a "documented list of Firewall and Router settings. Could anyone help with how I do this pl… (閱讀更多)
In order to satisfy PCI DSS compliance for my small business I need to supply a "documented list of Firewall and Router settings. Could anyone help with how I do this please ?
Best, Mike
dev tool icons missing
Please see the attached image. The icon on the dev tools is missing, especially on the "debugger" tab. Application Basics Name: Firefox Version: 65.0a1 Build ID: 201811… (閱讀更多)
Please see the attached image.
The icon on the dev tools is missing, especially on the "debugger" tab.
Application Basics
Name: Firefox Version: 65.0a1 Build ID: 20181102100039 Update Channel: nightly User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0 OS: Linux 4.18.16-300.fc29.x86_64 Multiprocess Windows: 1/1 (Enabled by default) Web Content Processes: 10/8 Enterprise Policies: Inactive Google Key: Found Mozilla Location Service Key: Found Safe Mode: false
Can't view my pictures
This may be a windows issue, but maybe Firefox can help being it is hard to get windows help. I used to be able to see my pictures from the pictures library in windows. B… (閱讀更多)
This may be a windows issue, but maybe Firefox can help being it is hard to get windows help. I used to be able to see my pictures from the pictures library in windows. But now when I access my pictures I see only icons for those pictures. Yes, I can see the picture when I click on a given icon, but I used to be able to see all the pictures, which I have many, when I just accessed my pictures and not the icons only. I can't figure out a way to get my picture viewing back when I access my pictures from the "my computer" portal and then access my picture library. Sort of frustrating when I want to see a certain picture and all I see are icons. Can someone help? Thank you.
How To Inspect Drop Down
Hi All, I'm trying to make tweaks to the style (CSS) of my website's dropdown navigation menu. I can mouse over the navmenu, right-click on the area I wish to edit, and s… (閱讀更多)
Hi All,
I'm trying to make tweaks to the style (CSS) of my website's dropdown navigation menu. I can mouse over the navmenu, right-click on the area I wish to edit, and select 'Inspect Element'. The problem is, as soon as I move the cursor away, the drop down menu obviously goes away. I know there is a way to keep the dropdown menu 'down', but I don't know how. I'm not a developer, so my knowledge of the developer console is limited.
My website is www.gregsgraphics.com
Thanks is advance.
How to fix browser caching if you use amazon native ads?
Hi, My site www.malesensepro.com has browser cache issue with amazon native ads even I am using wp super cache. Please let me know if there is any plugin that solves this… (閱讀更多)
Hi, My site www.malesensepro.com has browser cache issue with amazon native ads even I am using wp super cache.
Please let me know if there is any plugin that solves this issue.