Mark Rogers
Mark Rogers
`png_set_text()` expects txt.text to be NUL terminated - it calls `strlen(txt.text)` to work out the length of text, but the buffer returned by `image.get_metadata()` which calls `lodepng_inflate()` isn't guaranteed to...
I had a look at the code in Assertions.java - I think the problem is ``` .1762 boolean isEmptyAtt = "".equals(atts.getValue(i)); ``` This is set for all empty attributes -...
PR submitted. It looks like the correct place to patch is `parseHost()` https://github.com/validator/galimatias/blob/master/src/main/java/io/mola/galimatias/Host.java#L69 So something like this after the if (input.isEmpty()) check: ``` for(int i = 0; i < input.length();...
I think both are much more likely to encourage the author to do the right thing, so a definite improvement. I took a guess at how an author might react...
I think it should allow `aria-pressed=true`, `aria-pressed=false`, `aria-pressed=mixed` It's less clear what should happen when aria-pressed has no value or an empty value: ``` ``` ARIA 1.2 says: > Buttons...
> `rotate` seems to have very limited support (Firefox, and partly for Safari). > We should at least add a big "Accessibility Support" note with it; maybe wait until it...
Yes, but might take a week or two to get round to it.
Hoping to get to this at the end of this week.
@WilcoFiers PR https://github.com/act-rules/act-rules.github.io/pull/1742 submitted PS I don't have permissions to assign myself or add labels per the PR Template
Some useful background reading on the design process that led to the combobox 1.2 pattern, and the problems with the 1.1 pattern: https://github.com/w3c/aria/wiki/Resolving-ARIA-1.1-Combobox-Issues