Questions tagged [chromium]

Chromium is the open source web browser project from which Google Chrome draws its source code.

Chromium is the open source web browser project from which Google Chrome draws its source code.

The project's hourly Chromium snapshots appear essentially similar to the latest builds of Google Chrome aside from the omission of certain Google additions, most noticeable among them being Google's branding, auto-update mechanism, click-through licensing terms, usage tracking, and built-in PDF viewer.

Chromium uses the Blink layout engine.

See

4191 questions
1
vote
1 answer

How can I play Widevine-encrypted content out of the browser?

I'm trying to playback Widevine-encrypted content outside of the browser. I'm trying to use the Content Decryption Module that ships with Chrome, which exports this API. After a lot of trial-and-error and research, I'm able to successfully…
Luke
  • 11,211
  • 2
  • 27
  • 38
1
vote
1 answer

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 114 using latest Chromium v116.0

Trying to run Selenium with Chromium (through ChromeDriverManager) on a Linux machine. Error message: selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version…
1
vote
3 answers

Selenium Chrome webdriver stopped working

I have a script in google Colab that uses Selenium for automating some Chrome tasks. The weird thing is that this script worked perfectly until today. Suddenly, when I run my script, I get this error that I did not get…
user21848941
1
vote
1 answer

Floss manager not present, cannot set Floss enable/disable

I am encountering an error message while running a command that involves launching Chromium in headless mode with various options. The specific command I am using is as follows: chromium --incognito --headless --remote-allow-origins=*…
1
vote
0 answers

Chromium: freeze state

When chromium is running, is it possible to freeze the state of the webbrowser (or a single page) and load it back? My use case is that I want to run a JavaScript snippet on a webpage many times. Rather than loading the page many times, waiting a…
Test
  • 962
  • 9
  • 26
1
vote
2 answers

image width=100% not working in firefox within nested flexbox

I am having an issue with layouts and css between firefox - 112.0.2 and chromium - 112.0.5615.165 I have created a small self contained sample on codepen here https://codepen.io/alex116/pen/JjmZPJX .dashboard { display:flex; justify-content:…
Alex
  • 619
  • 1
  • 8
  • 25
1
vote
1 answer

Back-Forward in Google Chrome disabled by internal error Ignoreeventandevict

Recently I come accross an issue whereby the Back-Forward Cache in Google Chrome was disabled and using the Back-Forward Cache debug tools revealed the issue was an Internal error Ignoreeventandevict. If you do a Google search for the error you'll…
rhys_stubbs
  • 538
  • 6
  • 16
1
vote
1 answer

Chrome for Testing (aka CfT)

By chance reading https://pptr.dev/chromium-support I found New Chrome brand: Chrome for Testing document, however I cannot google anything. (Though other search engine gave me results…
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
1
vote
1 answer

In Electron, why is it only possible to set frame rate in offscreen rendering?

Electron methods that are only possible to use with offscreen rendering This picture was taken from the Electron documentation. My question is why is it only possible to use theses methods in offscreen mode?
1
vote
3 answers

SVG image circle stroke pattern is being cut on chromium

I have a crazy problem with SVG rendering in chrome/chromium (firefox works as expected). I want to render a circle with empty fill but stroke containing a template but for some reason once I try to change screen resolution, circle strokes start to…
Alex Antonov
  • 14,134
  • 7
  • 65
  • 142
1
vote
2 answers

Different chromium packages for "FROM node:18.15.0" vs "FROM ubuntu:22.10"

I find that following Dockerfile builds fine (on Ubuntu 22.10), finding all the right packages: FROM node:18.15.0 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ …
drmrbrewer
  • 11,491
  • 21
  • 85
  • 181
1
vote
1 answer

C# selenium --whitelisted-extenson-id causes crash without dump

I am using chrome with selenium to test my extension: ChromeOptions chromeOptions; IWebDriver tempDriver = null; string extensionId = "123"; chromeOptions = new…
John
  • 5,942
  • 3
  • 42
  • 79
1
vote
3 answers

screen_capturer_mac.mm:462:11: error: 'CGDisplayStreamUpdateGetRects' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]

I am compile the chrome in macOS 13.2.1 with M1 pro chip, when I run this command, show error: ➜ src git:(64ca7395b4) autoninja -C out/Default chrome ninja: Entering directory `out/Default' [20433/54517] OBJCXX…
Dolphin
  • 29,069
  • 61
  • 260
  • 539
1
vote
2 answers

Should a client which is NOT behind a NAT receive SRFLX ICE candidates?

Currently there seems to be lots of confusion due to a variety of pro-privacy features introduced in latest RFCs aiming at hiding away peers' IPs but also due to the logic responsible for optimizing redundant information produced through WebRTC…
Vega4
  • 969
  • 1
  • 11
  • 25
1
vote
0 answers

Session cookies are not always sent to server in Android Webview

I am working on an ionic app using the in-app-browser plugin to open an embedded webview. The URL displayed in the webview replies with a "set-cookie" to start a new session, and redirects to a new url that loads the app. All this works fine. The…