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
172
votes
5 answers

Preventing scroll bars from being hidden for MacOS trackpad users in WebKit/Blink

WebKit/Blink's (Safari/Chrome) default behaviour on MacOS since 10.7 (Mac OS X Lion) is to hide scroll bars from trackpad users when they're not in use. This can be confusing; the scroll bar is often the only visual cue that an element is…
Jeremy
  • 1
  • 85
  • 340
  • 366
169
votes
10 answers

Imitating a blink tag with CSS3 animations

I really want to make a piece of text blink the old-school style without using javascript or text-decoration. No transitions, only *blink*, *blink*, *blink*! This is different from that question because I ask for blinking without continuous…
m93a
  • 8,866
  • 9
  • 40
  • 58
69
votes
1 answer

How to read audio data from a 'MediaStream' object in a C++ addon

After sweating blood and tears I've finally managed to set up a Node C++ addon and shove a web-platform standard MediaStream object into one of its C++ methods for good. For compatibility across different V8 and Node.js versions, I'm using Native…
John Weisz
  • 30,137
  • 13
  • 89
  • 132
39
votes
3 answers

SVG click events not firing/bubbling when using element

I have come across an interesting bug (?) whereby if you embed the SVG using as part of a link (an icon for example) – the icon itself does not register a click event in jQuery, but clicking the text does. I think this is due to SVG events not…
Paul Thomas
  • 2,756
  • 2
  • 16
  • 28
33
votes
6 answers

How to make a text blink in shell script

I have this piece of code below: echo "\033[33mTitle of the Program\033[0m" which changes the colour to yellow. How can I make the text "Title of the Program" blink?
user2519862
27
votes
3 answers

Strange diagonal lines in Chrome/Chromium (bug?)

When I use CSS filters, shadows, transformations, SVG (or similar), my Chrome/Chromium shows a strange diagonal lines: filter:drop-shadow(0px 0px 10px #dce810); transform:skew(-15deg); No error in Firefox (Windows) / Canary Chrome 58.…
Manz
  • 948
  • 12
  • 26
22
votes
2 answers

Is SMIL for SVG deprecated, un-deprecated or... paused but will eventually be deprecated?

TLDR: I'm trying to establish whether it's worth spending some time mastering SMIL. The official line (at least from Blink, but maybe not from Gecko) appears to be that this animation technology is functionally deprecated... but the reality on the…
Rounin
  • 27,134
  • 9
  • 83
  • 108
20
votes
1 answer

Why can't browsers use a virtual dom internally as an optimisation?

There are lots of SO questions and blogs on the internet attempting to explain what virtual dom is, but this question is about why this kind of optimisation has to be to implemented in JavaScript/as part of a framework, rather than by the browser…
dan-man
  • 2,949
  • 2
  • 25
  • 44
20
votes
10 answers

Why Glide blink the item ImageView when notifydatasetchanged

I am using Glide 3.7.0 with RecyclerView. The item view always blinks when refreshing (calling notifyDataSetChanged). Here is my code: Glide .with(context) .load(filepath) .diskCacheStrategy(DiskCacheStrategy.NONE) .skipMemoryCache(true) …
19
votes
6 answers

Blink not working in Chrome

I am using blink in my application to display error message. The problem is that it's working in Firefox but not in Chrome. I don't know what the problem is. How can I make it to work in Chrome?
aizaz
  • 3,056
  • 9
  • 25
  • 57
16
votes
2 answers

Programmatically generated/activated file input doesn't always fire `input` event

I have a button on my web application, which has the following code in the click event handler: const fileInputEl = document.createElement('input'); fileInputEl.type = 'file'; fileInputEl.accept = 'image/*'; fileInputEl.addEventListener('input',…
Brad
  • 159,648
  • 54
  • 349
  • 530
14
votes
3 answers

How do you make an image blink?

I was wondering how to make an image blink in CSS, if it is possible. I want to have it blink where it is. I would also like to change the speed but mainly I want to make it blink.
user1623495
  • 151
  • 1
  • 1
  • 3
13
votes
1 answer

REM font size not adjusting below arbitrary threshold

In Safari 12.0.2 and Chrome 71.0.3578.98 on Mac Mojave 10.14.2, when setting the font-size using rem units, the actual size won't go below 9px. See this example: https://codepen.io/stephenjwatkins/pen/OrbGxL My browser's font size is set to the…
Stephen Watkins
  • 25,047
  • 15
  • 66
  • 100
11
votes
1 answer

Chrome 53 introduces unwanted spacing in LI elements

Starting Chrome 53 we have noticed a new CSS-related issue. This issue can also be seen in Vivaldi (which is based on the same engine as Chrome). The same issue is not seen in Safari or Firefox or Chrome 52. For example, here:…
Idan Adar
  • 44,156
  • 13
  • 50
  • 89
10
votes
2 answers

Weird JavaScript behavior in PhantomJS/WebKit

I am building an application in Python that checks if a certain web application is vulnerable for an AngularJS Sandbox Escape/Bypass. Here is how it works. My app starts a local web server (http://localhost) using the following content.
Tijme
  • 39
  • 2
  • 24
  • 41
1
2 3
17 18