Blink icon indicating copy to clipboard operation
Blink copied to clipboard

An unofficial mirror for Chromium's Blink, with experimental branches.

Results 10 Blink issues
Sort by recently updated
recently updated
newest added

I've got the threadsafe calc() impl working , and added [a bunch of tests](https://github.com/yoavweiss/Blink/blob/calc4/Source/core/css/parser/MediaQueryCalcParserTest.cpp#L25), but many more are needed.

Just having a look through https://github.com/yoavweiss/Blink/blob/master/Source/core/html/parser/HTMLSrcsetParserTest.cpp and it doesn’t look like there’s a test for an omitted `1x`flag: `1x.gif, 2x.gif 2x`

Doing `` (i.e. with a self-closing tag) fails. The tag is never closed, and any subsequent content is treated as a child of ``.

should be `alternate`, but is empty

`AXURL` is `null`, instead of the `src`

In a `contenteditable` element, when the caret immediately precedes a ``, hitting delete or calling `document.execCommand('Delete')` removes the ``.

Given: ``` ``` ...all three images are downloaded

e.g. ``` var span = document.getElementsByTagName('span')[0]; span.innerHTML = ""; return !!document.newImage ``` ...returns `false`, should be `true`

`` does not load a `` that is set dynamically with JS, using for e.g. `source.src = 'file.png'`.

`` can't be dragged, which causes problems for drag-and-drop (e.g. dragging a picture into a `contenteditable` region).