4,359 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
51
views
HTML to PDF print using Chromium
I would like to automatically print a local HTML file my.html to a PDF using the command line (for automation purposes) and Chromium (version 145.0.7605.0 and above).
I'm trying to do so as follows:
$ ...
-1
votes
1
answer
134
views
issue of running playewright using bunjs
i am trying to run playwright in bun. but when i run bun run test.ts, the output hangs at Launching Chromium....
output:
PS D:\\Javascript files\\ss_url_project_copy\\backend\> bun run test.ts
...
0
votes
1
answer
83
views
Chrome PWA no longer calculating dvh properly on initial load
I have a PWA with "display": "standalone" set in my manifest. The app uses body { height: 100dvh } to fill the entire space of the visible viewport. This has been working for ...
0
votes
0
answers
41
views
Why range.startContainer gets different results when I click inside or outside the img?
class Editor {
docContainer
text
constructor(posContainer) {
this.posContainer = posContainer
this.genComponets()
this.listen()
}
genComponets() {
...
3
votes
2
answers
139
views
Is there a way to target a pseudo-element in CSS by its class?
I am looking to construct CSS to target this element...
<input type="button"
pseudo="-webkit-media-controls-play-button"
aria-label="play"
...
0
votes
0
answers
63
views
How to prevent Electron BrowserWindow from being throttled when other apps are in fullscreen on macOS?
I'm building a floating mic/system audio visualizer widget in Electron. The widget uses a panel type BrowserWindow that stays on top of all windows, including fullscreen apps.
The issue is that when ...
0
votes
1
answer
132
views
rAF-aligned pointermove event
I studied event behavior and also read the Chromium source code. And the following surprised me.
Usually, if you move the pointer within a document, you'll get this behavior:
This is the so-called ...
1
vote
0
answers
85
views
Creating a C chrome.dll forward-only wrapper give STATUS_STACK_BUFFER_OVERRUN
I was experimenting with writing a forward only wrapper that expose the function of the original dll, I decided to play with chromium "chrome.dll", my code seem to work, chromes open but ...
1
vote
0
answers
80
views
Include header on all pages except on page 1, converting html to pdf using chromium playwright
We are using chromium playwright for converting html to pdf where header footer watermark are being set on pdf. But header need to be added on all pages except on page 1. Following is the snipped from ...
1
vote
0
answers
127
views
How can Playwright send the Proxy-Authorization while using Chromium?
I have a proxy server that requires a username and password to access (e.g., 127.0.0.1:8000, username: abcdef, password: 123456).
When I use Playwright to access a destination website through this ...
0
votes
0
answers
38
views
NullPointerException: dexPath == null when running Chromium 136 bundle APK (PlaybackListenerService crash)
I am trying to upgrade my project to Chromium 136 and build a bundle APK. The local release APKs work fine, but when I install the bundle build from Play / bundletool, the app crashes with the ...
2
votes
0
answers
32
views
Chrome Kiosk mode: undo pinchzoom after timeout [closed]
I created a kiosk app for a touchscreen device. I could disable pinchzoom, but it would be nice to keep it enabled, so the user could zoom into some details.
But if the user just leaves the device in ...
0
votes
0
answers
86
views
text-decoration-thickness transition in Chromium
This CSS transition works in Gecko (Firefox) and WebKit (Safari) browsers but not in Chromium. Is it a Chromium bug or is there a more specific implementation to make this work?
I can't find anything ...
0
votes
0
answers
67
views
Android WebView: First tap on <label for="..."> focuses input but does not open soft keyboard (IME)
I’m developing a hybrid Android app using Capacitor (WebView). I’ve run into a strange bug that I cannot reproduce in Chrome browser, but only in Android’s WebView:
When the user taps a "label for", ...
1
vote
1
answer
111
views
When does browser (e.g. Chrome) add `Cache-Control: no-cache` to request header when user empty cache and hard reload?
When I open the dev tool and select Disable Cache, chrome adds Cache-Control: no-cache in request header for all requests.
But if I press ctrl + F5 or click on Empty Cache and hard reload button in ...