Martin Auswöger

Results 436 comments of Martin Auswöger

Maybe we could try to trigger a resize event manually here: https://github.com/ausi/respimagelint/blob/194f75598b0fc0e26bb3166a17a3e5ecbb25f30b/src/collector/readDimensions.js#L134-L137

@caco3 can you test if the same issue also happens with `readdir()`? ```php $i = 0; mkdir("dst"); $handle = opendir("src"); while (false !== ($entry = readdir($handle))) { $i++; $path =...

I found an answer to a similar question that suggests that this behavior undefined and depends on the operating system and file system: https://stackoverflow.com/a/39017355/1031606 So i’d guess that PHP is...

Do you have *“Website tracking: Prevent cross-site tracking”* enabled in the privacy settings? If that setting is the issue, I probably have to change the way the data gets transferred...

I think so too, it probably is the new default... Also, it’s generally a great feature that all browsers should have. So I have to fix this in the linter.

> I've a tool that generates images dynamically server-side, and they are ignored by the linter. What does that mean “they are ignored”? Please post the HTML-Source code of one...

I just tried your example HTML code and got the expected `1 out of 1 images passed all checks.` response from the linter. Are your images already there after the...

> The images were already there when I lauch the linter The linter reloads the current page into an `` (in order to be able to resize the viewport), so...

> The ideal thing would be if the linter could acquire the generated html and not the hard-coded one only. It already does that, but it only waits until the...

> Would it be possible to use [`srcdoc`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/srcdoc) or `data:text/html...` as `src` value? That does not work, as all JavaScript events would get lost, and they are required for most...