Questions tagged [blink]

Blink is an open source rendering engine forked from WebKit. It is included in Google Chrome 28+ and Opera 14+. Blink includes a different multiprocess architecture than WebKit2, and the V8 JavaScript engine, rather than JavaScriptCore.

Blink is the rendering engine used by Chromium open source project. Blink, first announced in April 2013, is a fork of WebKit engine.

It is used in Chrome 28+, Opera 15+, Qt WebEngine and some Chromium-based browsers.

258 questions
2
votes
2 answers

How to change UIImage of UIImageView after duration (blinking effect)

I am trying to animate the blinking between two images on an imageview to draw the user's attention to an indicator to noticing the change. I would like the image to only blink one or two times before remaining on the new image. The timeline of…
Krejko
  • 901
  • 1
  • 9
  • 23
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
0 answers

Firefox vs Chrome: different behaviour of "width: fit-content;" Why? Who is right?

The same CSS is displayed differently in Firefox / Chrome. Specifically it seems width: fit-content; gets treated differently. It seems like Blink ignores it in this case. In any case, I like to try to understand what's going on, which engine does…
somedotnetguy
  • 557
  • 2
  • 14
1
vote
1 answer

Capture chrome browser engine output using javascript in order to capture rasterized frames of an SMIL SVG animation

My ultimate goal is that I'm trying to convert an animated SMIL SVG into an APNG file. I have found no easy way to do this, and so I'm doing something a roundabout: I've written a node.js + express.js app that hosts a simple backend to get svg…
SomeGuy
  • 1,702
  • 1
  • 20
  • 19
1
vote
0 answers

Blink/Webkit Bug same domain different IPs

I have this insane bug that is driving me CRAZY. Set up Physical Server A with ip address ipA Physical Server B with ip address ipB DNS server: ipA = a.mydomain.com ipB = b.mydomain.com A and B have nothing to do with each other. In Chrome or…
EpiX
  • 1,281
  • 2
  • 16
  • 22
1
vote
0 answers

Manually invalidating a composite layer in Chrome

Background I'm working on a web app built in HTML (not WebGL/Canvas) which includes 2d viewport controls for panning and zooming the page content. Something like Figma, perhaps, but rendered entirely with DOM, which is a hard technical…
1
vote
1 answer

CSS: multiple images blinking effect, one after another

I am trying to make 3 images alternate blinking/flashing at the same spot, on top of 1 background image. I tried doing that but the blinking turned out to be really random: 2 images would blink together while the other blinks alone. My goal is to…
isabtan
  • 11
  • 2
1
vote
1 answer

Chrome Scrolling Bug?

I am fighting with weird Chrome behavior, when page loads it jumps on the bottom of the page and then immediately back up to top. Reproducible in Chrome 84.0.4147.135 (Official Build) Chromium 80.0.3987.162 Conditions There must be a fragment in…
elixon
  • 1,123
  • 12
  • 15
1
vote
0 answers

Android Studio gif effect on images

Good night everyone. I am trying to make a GIF effect on two images. So, when I load the page, an image A appears and in the next second, it changes to image B. Like a blink or a GIF. In resume, I enter the screen and load Image A, then blink and…
Lincoln
  • 11
  • 2
1
vote
0 answers

How to prevent reflow for a part of the page?

Under which circumstances does the browser engine (e.g. chromium blink) ignore some part of the render tree when reflowing? For example, updatedNode has been updated in a way that reflow has to be triggered (e.g. position: absolute; left:0px changed…
helt
  • 4,925
  • 3
  • 35
  • 54
1
vote
0 answers

How to add mutil-command line arguments to open chrome in android?

I'm trying to run the chrome with command line argument via adb terminal in android. And it works through writing one flag to /data/local/chrome-command-line, e.g: echo "chrome --single-process" > /data/local/chrome-command-line. Now I want to make…
ZacharyLiu
  • 31
  • 9
1
vote
3 answers

Chrome does not respect display: inline on flexbox children

How do I force Chrome to respect display: inline !important; in a flexbox parent when applied to it's child elements? Chrome forces elements to be displayed as block no matter what I set the display property to. ︎ XML
John
  • 1
  • 13
  • 98
  • 177
1
vote
0 answers

Error "Unsatisfiable requirements detected for package Blink" in installation

I am trying to install Blink and getting the following message. (v1.0) pkg> add Blink Updating registry at `~/.julia/registries/General` Updating git-repo `https://github.com/JuliaRegistries/General.git` Resolving package versions... ERROR:…
Julia O
  • 221
  • 2
  • 13
1
vote
1 answer

jquery blink a few

i want to give blink effect to an element by using addClass and removeClass 3 times each i tried this $("#div").addClass("orange").delay(300).queue(function(next){ $(this).removeClass("orange"); next(); }); this is works just 1 time how can…
Simasher
  • 117
  • 1
  • 3
  • 13
1
vote
1 answer

How can I make a custom border width not resize when zoomed in?

When I set the border width to thin/medium/thick and zoom in the page in Chrome, the border size appears the same no matter what my zoom level is. When I set the size to something else, such as 2px, this no longer happens, and the border starts…
user1779715