firefox Questions
5
Solved
With Selenium or JavaScript how could you get the (over the network) transferred size (bytes) of the loaded page including all the content, images, css, js, etc?
The preferred size is that of what...
Bellringer asked 15/12, 2014 at 18:18
2
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
i...
Ultraviolet asked 9/6, 2017 at 10:20
1
I have noticed that a background gradient in Firefox is not so smooth rendered compared to chromium.
Firefox:
Chromium:
Firefox renders the gradient with more "artifacts" and not a homo...
Facilitate asked 10/1, 2023 at 12:3
2
Solved
I'm trying to implement conditional assignment of the console.log() method to a variable as follows:
var dbglevel = 1;
var dbg = (dbglevel > 0) ? console.log : function(){};
dbg('message'); //...
Exstipulate asked 21/6, 2014 at 7:28
4
Some variables can be "optimized out" during Javascript execution. Thus values of such variables are not available for inspection while debugging (User documentation). Variables view shows (optimiz...
Delinquent asked 19/7, 2015 at 16:7
14
Solved
How can I zoom an HTML element in Firefox and Opera?
The zoom property is working in IE, Google Chrome and Safari, but it’s not working in Firefox and Opera.
Is there any method for adding this p...
Snooker asked 29/10, 2010 at 5:54
4
Solved
I'm using Win7 but looking for a cross os solution, but this isnt even working in my Win7. I'm trying to change the icon of just the current profile. So what i did was:
I created shortcut of fire...
Scoville asked 2/6, 2014 at 22:39
2
Solved
I am on the latest firefox for linux: 115.0.2 (64-bit) (NOTE: Same issue on Firefox 116.0b5 (64-bit))
I enabled webgpu using about:config like so:
Yet, when running an example, the browser reports...
12
Solved
Does anyone know of a way to make an image not draggable and not selectable -- at the same time -- in Firefox, without resorting to Javascript? Seems trivial, but here's the issue:
Can be dragged ...
1
I started using the datalist, which has the functionality I need, but doesn't perform as I'd like it to. Specifically the problem is in Firefox where the activation of the dropdown is triggered by ...
Kostival asked 5/5, 2020 at 7:25
5
My operating system is Windows 10 64 bits. I use the latest versions of Firefox and Chrome.
I want to save the pre-master keys in order to use them with WireShark.
For this, I have found many tut...
Turnover asked 14/8, 2019 at 16:7
2
Solved
Some of the PDF.js code mentions an "annotation layer", for example AnnotationLayerBuilder here:
https://github.com/mozilla/pdf.js/blob/95e102c07bc257c2120fd7fd9141762b2c813a1c/web/annota...
Valentine asked 6/8, 2020 at 7:11
2
I'm trying to modify the content of the clipboard by executing the "copy" command on a focused DOM element. However, the new content comes from the server, and arrives from a websocket, which is th...
Campobello asked 11/12, 2018 at 9:23
11
I'm not seeing this issue in any other browser that I've tested - IE, Chrome, Opera - but whenever I load a page from the server, I'm seeing a flash of unstyled content before the CSS is applied.
...
Carter asked 15/1, 2014 at 20:7
18
Solved
I want to customize a scrollbar with CSS.
I use this WebKit CSS code, which works well for Safari and Chrome:
::-webkit-scrollbar {
width: 15px;
height: 15px;
}
::-webkit-scrollbar-track-piece {...
2
Solved
I have a working WebSocket non secure application. But my website uses https and I need a Secure WebSocket connection to avoid Firefox to complain about the fact that the connection is insecure.
I...
7
I am having trouble with a selenium error related to a FireFox binary.
I added C:/Users/Mack/AppData/Local/Programs/Python/ to PATH using backslashes and rebooted. I downloaded what I thought is th...
Mccarley asked 23/9, 2020 at 19:15
5
Solved
This one is IE specific (not anymore, apparently). We have very simple code:
<div draggable="true">
<p>Text</p>
<input type="text"/>
</div>
On Chrome it works fin...
Kissable asked 26/11, 2014 at 12:25
5
Solved
I want a piece of dark text on dark background to have a white glow outside of it. Although the default drop shadow filter in CSS (like filter: drop-shadow(2px 2px 2px black)) officially should sup...
Paucity asked 12/11, 2015 at 16:24
2
Solved
I found the question How to install Firefox addon from command line in scripts? that seems to work for Firefox extensions (i.e. ones with an install.rdf file) but what about WebExtensions (extensio...
Divisible asked 9/6, 2016 at 14:32
9
I'm working on a site that requires a login and includes embedded Youtube videos. Because of the login, I need to get SSL working, which it largely is. I'm hitting an unexpected problem with the Yo...
43
Solved
I want to be able to scroll through the whole page, but without the scrollbar being shown.
In Google Chrome it's:
::-webkit-scrollbar {
display: none;
}
But Mozilla Firefox and Internet Explor...
Skittle asked 21/5, 2013 at 13:11
2
Solved
I use Firefox.
This code logs [].
var log = console.log;
function new_comb(aComb) {
var res = [];
log(aComb); // <- This is the line
for (var p in aComb) {
var peg = aComb[p];
var curren...
Calfskin asked 14/8, 2013 at 11:44
18
I am seeing some of the server calls (Used for tracking purpose) in my site getting aborted in Firefox while seeing through HttpFox. This is happening while clicking some link that loads another pa...
Fireplug asked 1/4, 2009 at 8:21
7
Solved
I'm writing tests using selenium. In those tests I need to enter a number into a field in a form.
Here is the html:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<...
Traveled asked 1/5, 2014 at 17:22
© 2022 - 2024 — McMap. All rights reserved.