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
49
votes
3 answers

Breakpoint debugging minfied/mangled/compiled variables

Working on building JavaScript sourcemaps into my workflow and I've been looking for some documentation on a particular part of debugging source maps. In the picture below I'm running compressed Javascript code, but through the magic of source maps…
Dan-Nolan
  • 6,594
  • 4
  • 27
  • 32
44
votes
9 answers

How to download file with puppeteer using headless: true?

I've been running the following code in order to download a csv file from the website http://niftyindices.com/resources/holiday-calendar: const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({headless:…
Antonio Gomez Alvarado
  • 1,842
  • 2
  • 13
  • 24
43
votes
4 answers

Native looking UI components for Electron application

I'm using Electron (formerly Atom Shell) for a desktop application. It is a lot of fun to use and event-driven programming has its merits. I've got all HTML, CSS & JS power at my hands because it uses one of the more recent Chromium builds. I'd like…
Hedge
  • 16,142
  • 42
  • 141
  • 246
40
votes
3 answers

Package 'chromium-browser' has no installation candidate

I am trying to install the chrome browser in a docker image with RUN apt-get install chromium-browser but I get the error: Package chromium-browser is not available, but is referred to by another package. This may mean that the package is…
Alex
  • 41,580
  • 88
  • 260
  • 469
40
votes
6 answers

Google API Keys Missing Warning Message when using Chromium Portable

When i use the new Chromium Portable browser it always shows "Google API keys are missing.Some functionality of Chromium Portable will be disabled" after starting up. How do i get rid of this warning message and what does it mean?.
Hyperion
  • 401
  • 1
  • 4
  • 5
39
votes
2 answers

Chromium throws NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED

Started working today and Chromium on Ubuntu suddenly throws NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED on a well known host. Already tried deleting .pki/nssdb/*, but nothing changed.
Thomas Venturini
  • 3,500
  • 4
  • 34
  • 43
39
votes
5 answers

WebView Rendering Issue in Android KitKat

I've been working on an application which have a WebView in which a static page get loaded from the assets (Also using JavaScript). This WebView is not working in KitKat, it remains blank. I am aware of the change in rendering engine (webkit to…
gnuanu
  • 2,252
  • 3
  • 29
  • 42
37
votes
10 answers

Font looks blurry after translate in Chrome

EDIT 2016-07-04(Since this question is getting popular): This is a bug in Chrome. Developers are actively working on a fix. EDIT 2017-05-14 The bug seems to be fixed, the fix will be introduced in Chrome 60 EDIT 2018-05-04 A fix has been merged, but…
joppiesaus
  • 5,471
  • 3
  • 26
  • 36
36
votes
5 answers

How to reset chrome inspector?

Something is wrong with my Chrome inspector, I would like to reset the Chrome inspector to out of the box settings. How could I do ? (wihout removing my whole Chrome)
Hugolpz
  • 17,296
  • 26
  • 100
  • 187
33
votes
4 answers

How to disable HTTP/2 in chrome or chromium?

I'm trying to debug difference between HTTP/1.1 and HTTP/2. Is there any possibility for disabling HTTP/2 in chrome or chromium? I couldn't find this option flag in chrome 56. I have tried chromium 58 with flag…
Everettss
  • 15,475
  • 9
  • 72
  • 98
33
votes
4 answers

How to set electron UserAgent

I need to set the UserAgent in electron to include the touch flag since I am writing the application for touch screens and it doesn't seem to auto detect that it is running on a touch screen. Any help would be nice, I already tried setting it in the…
zchrykng
  • 1,066
  • 1
  • 10
  • 20
31
votes
4 answers

Puppeteer/chromium on Mac chronically prompting "accept incoming network connection?"

I have a node application that uses puppeteer to test a web site. Up until we updated to latest puppeteer 1.12.2 we had no problem. Node launches puppeteer on timer On every launch, system asks: "Do you want to the application Chromium.app to…
Eric Oemig
  • 487
  • 6
  • 9
31
votes
4 answers

Android 4.4 giving ERR_CACHE_MISS error in onReceivedError for WebView back

I have a webview in my Layout. By default, a search form is opened in it. On search, a listing section appears below the search form. If any link in the list is clicked, the details page opened. Now I want to controlled the back navigation for the…
dev_android
  • 8,698
  • 22
  • 91
  • 148
30
votes
2 answers

Tail Call Optimization implementation in Javascript Engines

As of February 2019 in Chrome Version 71.0.3578.98 on Mac , the following program throws Uncaught RangeError: Maximum call stack size exceeded error. at a count of 16516. const a = x => { console.log(x) a(x + 1) } a(1) I've done quite a bit…
Ben
  • 5,085
  • 9
  • 39
  • 58
29
votes
7 answers

Google Chrome over Linux FrameBuffer

I am working on a project where I need to run Google chromium over Linux FrameBuffer, I need to run it without any windowing system dependency ( It should draw on the buffer we provide it to draw, this will make its porting to any embedded system…
SunnyShah
  • 28,934
  • 30
  • 90
  • 137