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

Stop cursor blinking in IDLE

Python beginner here. Blinking cursors in interfaces really distract me and the one in Idle doesn't have the option to stop blinking. I've found this https://bugs.python.org/issue4630 which shows how to modify 2 lines of code in the…
2
votes
1 answer

JavaFX Making dialog blink like native windows dialogs

I'm trying to create a custom dialog window in JavaFX. It's simply loading a fxml and everything is fine apart from one cosmetic thing that bugs me out. When I click outside of the dialog, it does correctly block the interaction - but the dialog…
Chappi
  • 23
  • 2
2
votes
1 answer

Why does this repaint/reflow hack work?

Sometimes we have to force repaint/reflow for the browser to render certain states. For instance: window.onload = function () { setTimeout(function(){ document.getElementById("gradient_text").innerHTML = "bar"; }, 500); } #gradient_div…
m-a-r-c-e-l-i-n-o
  • 2,622
  • 18
  • 26
2
votes
2 answers

Can indexedDB run out of space?

I'm using localforage with the indexedDB driver. My indexedDB store is rather large, but I was under the impression that indexedDB never really runs out of space, it just expires old content. However, a large number of requests to the indexedDB are…
pfooti
  • 2,605
  • 2
  • 24
  • 37
2
votes
1 answer

HOW: import Scanned data from an ID into text boxes on separate view IOS (BLINKID)

I am developing an app for a project that takes data from a scanned USDL (Using BlinkID) and inputs data such as: First Name, Last Name, Middle Name, DOB, Sex, and address into seperate text boxes on a separate view controller. Then when hitting…
Genius
  • 55
  • 6
2
votes
1 answer

CSS DIV column-count height not adjusted

I'm trying to achieve a 3 column layout using the column-count property. But it gives me strange effects in Webkit and Blink (Google Chrome) [Firefox 3.6+ works fine]. If you look at the attached code and run the snippet, you can see that there is…
beatjunky99
  • 149
  • 11
2
votes
2 answers

CSS3 webkit-progress-bar animate background-position

I am looking for a working solution, to animate the background-position property of an html5 progress element in webkit/blink. HTML: CSS: progress[value]::-webkit-progress-bar { -webkit-animation:…
mate64
  • 9,876
  • 17
  • 64
  • 96
2
votes
1 answer

How do I set the ErrorProvider blink amount?

My problem: The red icon produced by the ErrorProvider blinks 6 times. I'd like to be able to set it to blink twice. The only blink properties I've come across are BlinkRate and BlinkStyle, neither of which affect the blink amount. To reproduce: In…
Clarus Dignus
  • 3,847
  • 3
  • 31
  • 57
2
votes
1 answer

Acessing the Render Tree

Is there any way to access the render tree (or the DOM and CSSOM trees) of a page -- programmatically -- before being processed by the rendering engine, in Chrome? And, ideally, could this be achieved through a Chrome extension, (with any…
2
votes
1 answer

Qt WebEngine for java?

Qt has launched the Qt WebEngine project to make blink available, can I use Qt Jambi to use the Qt WebEngine feature?
Alfred Chen
  • 179
  • 3
  • 13
2
votes
1 answer

What is causing IE/FF to collapse width: 0 inline blocks inside tables but Chrome/Opera not to?

In this question and answer we uncovered an interesting difference between Blink and Firefox/IE. What part of the spec concerns this issue and who is doing it correctly? Suppose you have a table with 1 column and 2 rows. Row 1 has a bunch of inline…
George Mauer
  • 117,483
  • 131
  • 382
  • 612
2
votes
2 answers

Complex selector don't work in last blink version :nth-child(2):nth-last-child(2){}

there is strange problem: after blink update selector .groups .group:nth-child(2):nth-last-child(2){} just stop working. But it still works well in webkit and gecko. Any ideas how to fix it? HTML
SilentImp
  • 1,865
  • 1
  • 18
  • 28
2
votes
0 answers

Multiple backgrounds causing repaint

For some reason multiple backgrounds (gradient or image) cause animation jittering(due to constant repaint). It does not occur in Canary build and I tasted it in the incognito window so this is not extensions problem. //sluggish .two-bg…
JAre
  • 4,666
  • 3
  • 27
  • 45
2
votes
1 answer

How do you make a blinking animation in Javascript?

I'm trying to make some ascii art blink by alternating between "0" and "_" for eyes. I pasted the code I currently have below. The ascii person will simply be closing and then opening her eyes once every few seconds. I don't see why my code doesn't…
Aeris
  • 43
  • 1
  • 7
2
votes
2 answers

Flexible box layout model: How should auto margins in the cross-axis direction behave?

Please help me to understand one issue with the flexible box layout model for which I get different results in Firefox and Chrome. Consider the following HTML fragment:
Header
Footer
styled…
Marc
  • 4,327
  • 4
  • 30
  • 46