Robert Vock

Results 14 issues of Robert Vock

### Symfony version(s) affected 6.1.0 ### Description The [text()](https://github.com/symfony/dom-crawler/blob/6.1/Crawler.php#L545) method mangles some UTF8 content, if the `normalizeWhitespace` option is used. This happens, because the `preg_replace` does not set the `utf-8`...

Bug
DomCrawler
Status: Needs Review

I have a seperate stylesheet for IE8, which I load using Conditional Comments: ``` ``` IE8 Linter checks page.css instead of page-ie.css

Two samples which fail to parse: ``` css @media (-o-min-device-pixel-ratio: 3 / 2) { body { background: url('hd-background.png'); } } ``` ``` css @media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), /* Opera...

bug

I've updated the composer.json and added a .travis.yml to enable testing using Travis CI. To enable automatic tests, you need to activate the realurl-repository here: https://docs.travis-ci.com/user/getting-started/ _Note:_ I've also changed...

I like to use early return statements in functions, if a feature is unsupported. This leads to incorrect warnings: ```js function version1() { if (window.fetch === undefined) { return; }...

I like the idea of allowing some variables only in some files. Other linteres have a `/* global */` special comment, where you can define variables which are passed into...

enhancement
help wanted

During a recipe update a commit will be generated in a temporary folder: https://github.com/symfony/flex/blob/78510b1be591433513c8087deec24e9fd90d110d/src/Update/RecipePatcher.php#L99 This commit might fail, if global commit hooks are installed. The command should be executed without...

We are getting reports from customers, that some email clients (or servers?) prefetch some URLs in emails. This leads to requests for the disclaimer action which were not triggered (=clicked)...

When I have two CSS files on a page, the order is different when the first is included via typo3_encore and the other via TYPO3. TypoScript without typo3 encore: ```typoscript...

bug

If choices is a function you currently get an error: ``` Warning: Object function () {...} has no method 'map' Use --force to continue. ```