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
0 answers

CSS Scroll Snap - Children with Transform on Hover Causes Janky Effect in Chromium Browsers

When scrolling through content in a scroll container with the scroll-snap-align property applied to the children, I was able to create this jarring/janky effect with children elements that have a transform property applied on hover. Running example…
kdmaz
  • 21
  • 1
  • 1
1
vote
0 answers

Enable service worker with playwright

I'm playing with telegram and playwright, and most of the time I'm getting a pop up that says that service worker is disabled. I have no idea how to turn it on. This is how I launch the browser: browser = await…
dopuu
  • 13
  • 1
  • 3
1
vote
0 answers

SVG gets pixelated on Chromium

Our logo svg is getting pixelated only on Chromium based browsers. I have seen the other questions and answers with similar issues but that didn't work out. Any suggestion how to workaround this? I have also filled a bug in Chromium. Example can be…
Aviram
  • 64
  • 4
1
vote
0 answers

Using Chrome command line args --window-workspace not working

I'm trying to configure puppeteer to launch Chrome on a specific screen (or workspace) on macOS. I've found the --window-workspace CLI argument but it doesn't work. I tried every number from 0 to 10 (the number of workspaces I have on 3 screens),…
Morgan Wilde
  • 16,795
  • 10
  • 53
  • 99
1
vote
0 answers

Pupeteer generate non tagged SVG path elements in PDF

I generate a PDF from HTML page sent to pupeteer in small nodeJs app. The generation is ok. My goal is to make that PDF pass the WCAG2 "PAC 2021" testing tool (https://pdfua.foundation/en/pdf-accessibility-checker-pac). So I had tagged every…
Foxlab
  • 564
  • 3
  • 9
1
vote
0 answers

Has Chrome's temporary "Lax + POST" behaviour been removed?

I am troubleshooting a bug that involves a cookie that is sometimes missing from a cross-site POST request. This page from The Chromium Projects (last updated Mar 18, 2021) describes a temporary intervention to SameSite cookie behaviour, whereby…
Liam
  • 19,819
  • 24
  • 83
  • 123
1
vote
1 answer

OverconstrainedError when requesting speakers stream via getUserMedia in Chrome

Please consider the code below: navigator.mediaDevices.getUserMedia({audio: true}).then(function() { navigator.mediaDevices.enumerateDevices().then((devices) => { devices.forEach(function(device1, k1) { if (device1.kind ==…
1
vote
0 answers

Recent Chromium memory leak on large HTML canvases?

Is anyone else seeing a major memory leak in the Chromium GPU process on large HTML canvases? I have code such as the following which uses the standard technique to "sharpen" a canvas on high DPI displays by scaling it: var dpiScale = ...; // e.g.…
user13473954
  • 111
  • 1
  • 5
1
vote
1 answer

Keypress text is not passed to the textarea element

I have a text area element that has a keypress event handler assigned to it. The point of the keypress event handler function is to enforce a character limit on the text area. When I click in the text area in the browser, I get the cursor, and if I…
Clinton Avery
  • 167
  • 1
  • 6
1
vote
0 answers

Chromium without disable-web-security flag and cross origin for specific host

Working with aws-chrome-lambda lib, I'm using headless chromium to render data saved on S3 with presigned url. I'd like to block access to local files and still be able to access the presigned url. aws-chrome-lambda has --disable-web-security set up…
1
vote
1 answer

Chromium Webdriver with "--no-sandbox" is opening a fully transparent/invisible Chrome window

The relevant code is as follows: # find the Chromium profile with website caches for the webdriver chrome_options = Options() profile_filepath = "user-data-dir=" + "/home/hephaestus/.config/chromium/Profile1" …
1
vote
0 answers

"Could not find Chromium" with Puppeteer on Heroku

I'm trying to deploy a nodeJs app using puppeteer on heroku and always getting "Could not find Chromium" I added the flags const browser = await puppeteer.launch({ headless: true, args:…
0xSandwich
  • 11
  • 1
1
vote
0 answers

Fetch --no-history chromium getting stuck

I am trying to develop my own browser for fun and I am following this turorial. The problem arises when I get to the part where I should fetch chromium by using the command fetch --no-history chromium. When it is done with some part it starts to…
eligolf
  • 1,682
  • 1
  • 6
  • 22
1
vote
0 answers

chromium build error gn gen out/Default in Ubuntu

When I'm setting up the build I'm getting the error in Ubuntu, I'm pasting my error shown in terminal here (Note: /home/quic/ is my home directory) when i type gn gen out/Default it get the following error `quic@quic:\~/chromium/src$ gn gen…
1
vote
1 answer

chromium-ozone-wayland cannot init wayland platform and connect to wayland display

I built chromium-ozone-wayland successfully but im getting error on runtime. Error Output : ERROR : XDG_RUNTIME_DIR not set in the environment ERROR:wayland_connection.cc(218) Failed to connect to wayland display: no such file or…
1 2 3
99
100