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
1 answer

Does

I have a video tag with the autoplay attribute on. It's "hidden" in that it's nested in a container with display: none applied. However, CPU usage for this page's tab in Chrome seems idling high (around 20%). There is nothing else on the page. Do…
chimerical
  • 5,883
  • 8
  • 31
  • 37
3
votes
0 answers

"white-space: pre-line" causes weird stretching on non-block elements

When using white-space: pre-line on non-block elements, Chrome, Opera and Safari (I suspect WebKit- and WebKit-derivative-based browsers) seem to stretch the element to seemingly fit the whitespace, which I believe they are supposed to…
Siguza
  • 21,155
  • 6
  • 52
  • 89
3
votes
1 answer

Using column-count together with ::before

In a small experiment I tried to replace the default bullets in a list by custom ones using a ::before pseudo-element. This works in both Chrome 50 as well as Firefox 46. But when I try to combine that with column-count it breaks in Chrome. Firefox,…
Sirko
  • 72,589
  • 19
  • 149
  • 183
3
votes
4 answers

How can I blink with jQuery?

I would like to blink my menu text. I have this code, but it doesn't work with IE. (function($) { $.fn.blink = function(options) { var defaults = { delay:500 }; var options = $.extend(defaults, options); return…
Nathaniel
  • 43
  • 1
  • 3
3
votes
1 answer

Chrome and Opera refuse to transition from flex: 0 to flex: 1

Chrome and Opera absolutely refuse to animate the transition between flex: 0 and flex: 1, which works fine in Firefox. On top of it, some Safari users report that it working, but with my Safari it fails to even change the slides. Plus it doesn't…
budgiebeaks
  • 159
  • 9
3
votes
1 answer

Chrome project - Where is Blink engine source code?

Where is Chrome's Blink engine's source code located?
Disco dancer
  • 31
  • 1
  • 3
3
votes
3 answers

inline-block overlaps container's border in Chrome

Why inline-block overlaps container's bottom border in Chrome in following test-case? HTML: CSS: ul { border-bottom: 1px solid red; …
Paul Kozlovitch
  • 786
  • 7
  • 12
3
votes
1 answer

How to make a Text content disappear after some time in JavaFX?

b1.setOnAction(new EventHandler() { @Override public void handle(ActionEvent e) { try { Class.forName("com.mysql.jdbc.Driver"); connect = DriverManager …
TomJ
  • 1,803
  • 14
  • 37
  • 57
3
votes
1 answer

WebKit / Blink rendering document badly

I'm currently working on a site that uses Twitter's Bootstrap 3. The site renders OK on Firefox, but on Chrome/Opera/Safri (basically browsers with WebKit or Blink as a layout engine) there's some weird padding or spaces, and CSS pseudoelements such…
NicolasJEngler
  • 565
  • 1
  • 10
  • 27
3
votes
1 answer

Span element not updating correctly

Update 3 - 10/09/2013: Just tested this with Version 29.0.1547.66 m and the problem still persists. If anyone else can test this out and let me know the results that would be great. You need an inline element such as a span with some text in, have…
BenM
  • 4,218
  • 2
  • 31
  • 58
3
votes
0 answers

How to use chrome devtools to debug javascript running in a custom VM?

Here's my scenario: I've created a little javascript VM implemented in pure javascript. The VM is very simple, but it can do basic things like pause/resume execution, as well as report source/line numbers of the currently executing bytecode. What I…
3
votes
1 answer

How to blink the Keyboard's LED using C# or VB.Net

Need to make the Keyboard's LED (Caps lock / Num lock or Scroll lock LED) blink either using C# or VB.net. (With or without using interop is fine)
Andy
  • 5,287
  • 2
  • 41
  • 45
3
votes
1 answer

Webkit / Blink browsers not respecting display styling on legend tag

Legend Tags in Webkit browsers seem not to accept any styling besides block and none for the CSS display property: Here's the HTML I should display as an inline block
I should be on the same line
And here's the CSS (put…
Beat Richartz
  • 9,474
  • 1
  • 33
  • 50
3
votes
1 answer

JFace TableViewer: Make cell background-color blink

I am currently working on a Eclipse RCP application that displays multiple TableViewers containing editable cells. Those cells are connected via EMF databinding to my model. Now I want the cell after editing it to blink green, meaning to set the…
Springsteen
  • 95
  • 1
  • 8
3
votes
1 answer

How to change windows blink cursor shape from c++?

How to change windows blink cursor shape from vertical which is by default ( | ) to horizontal like that used in dos ( _ ). Is there some good function that take care about that? OS: win7
tonni
  • 1,225
  • 4
  • 19
  • 35