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

Eye blink timer

I'm creating this website with few mascots and I'll implement a "eye blink timer" where I'll make every mascot blink. My question here is: how do i implement (and how long it is?) the delay between blinks and the blink itself, on any language (i'll…
Thiago Belem
  • 7,732
  • 5
  • 43
  • 64
2
votes
1 answer

Video blinks once on onCreate of previous fragment

I have created an app for galaxy tab using fragments.I have a videoview on a fragment to paly video from external storage. Here is the code for that fragment - package com.example.hscroll.demo; import android.content.res.Configuration; import…
Khushwant
  • 305
  • 2
  • 6
  • 17
2
votes
0 answers

What's the difference between CRP(Critical rendering path) and Blink render pipeline?

I am learning browser rendering in developers.google.com and an article titled Life of a Pixel, and there are two concepts: CRP(Critical rendering path) and Blink render pipeline/process. What's the difference and relationship between them? Does the…
Sage Kwun
  • 21
  • 2
2
votes
1 answer

Drawing path on canvas, when touch input moves quickly and stops, last segment blinks continuously

I'm working on a drawing app. It's fairly simple, uses onTouchEvent, paths, and canvas.drawPath. Whenever the user does a quick swipe and releases without stopping, the last segment of the path blinks continuously. In the ACTION_UP condition, I…
markthema3
  • 387
  • 2
  • 11
2
votes
1 answer

Julia PlotlyJS delay show plot, update plot

I'm trying to include a plot using the PlotlyJS package in a small application using Blink. So far, whenever I use the plot function, it opens a new window, which I want to avoid.. Furthermore, when updating the plot, another window pops up - also…
Adam
  • 743
  • 1
  • 6
  • 11
2
votes
1 answer

Interpreting the CSS 3 font matching algorithm

The CSS 3 Font Matching Algorithm states 4. a. ‘font-stretch’ is tried first. If the matching set contains faces with width values matching the ‘font-stretch’ value, faces with other width values are removed from the matching set. If there is no…
kpozin
  • 25,691
  • 19
  • 57
  • 76
2
votes
3 answers

Does `text-align: justify` stretch all white space characters evenly?

There are several horizontal white space characters in the Unicode standard beyond the usual space & non-breaking space. I tried using some of them with text-align: justify and it appears to my eye that the result is uneven: the «usual» spaces seem…
Ignat Insarov
  • 4,660
  • 18
  • 37
2
votes
0 answers

Why is Chrome loading smallest srcset image on DPR 1.5 displays?

Chrome load an unexpected image (400w) from srcset when the display is 1.5 DPR, sizes is set to 580px and a bigger image is available in the srcset (1893w). Cannot reproduce this error with any other DPR or any not WebKit browser. If the big image…
agenestar
  • 21
  • 2
2
votes
0 answers

DOM nodes styles which have been manually fiddled with get invalidated if any parent style changes

Please, take a look at this fiddle (I am using Vue.js to generate lots of DOM nodes here, but my question doesn't seem to be a Vue related issue): https://jsfiddle.net/dmaevsky/kswj23r1/117/ . When I am monitoring performance using Chrome's…
Dmitry
  • 653
  • 3
  • 14
2
votes
1 answer

Decimals in SVG filters

I can't get Chrome (and Opera) to use SVG filters with decimal values in radius. Go to http://oreillymedia.github.io/svg-essentials-examples/ch11/fe_morphology.html and try putting 0 or 0.5 in the radius field. In Chrome there is no change but in…
HH321
  • 502
  • 1
  • 6
  • 20
2
votes
0 answers

Black blink when exiting activity transition after screen rotation

I have 2 activities with a transition. Everything works fine when opening B from A and coming back if I do not rotate my phone. But if I rotate the phone, I get this when pressing back from B: As you can see (downloading the gif and looking frame…
Tim Autin
  • 6,043
  • 5
  • 46
  • 76
2
votes
2 answers

How to print blinking text in python

colorama is a package which is universal and will work independent of the platform. But it doesn't seem to support blinking text. Any other way this can be achieved in python ?
badri
  • 575
  • 2
  • 8
  • 22
2
votes
0 answers

Is it necessary to test your site in both Chrome and Opera (as they both use Blink)?

The current major web rendering engines are EdgeHTML, Blink, WebKit, and Gecko. A web developer needs to test their site in all of them to make sure it works right. However, there are two major implementations of Blink: Chrome and Opera. Is it…
jobukkit
  • 2,490
  • 8
  • 26
  • 41
2
votes
0 answers

CSS Mutltiple Background Images With 50% Width in Chrome (Blink)

I am trying to create an effect using two linear gradients as background images. Each background image should exactly cover one half of the area. When the area has an uneven pixel width it introduces a 1px gap between the two background images. I…
Jakob Fuchs
  • 386
  • 2
  • 4
  • 12
2
votes
2 answers

Make label text "blink" or "flash" on separate button press in Swift 3

Given an app with an on-screen text label and a button. Every time the button is pressed, the text changes. I want to be able to press the button and the text will "blink" when changing text, to make the text change more apparent to the user. Given…