danfickle / danfickle/openhtmltopdf
pseudo-class CHECKED and general sibling ~ combinator
Open
- Dominant language
- Java
- Stars
- 2.2k
- Forks
- 423
- PR merge metrics
- No merged PRs in 30d
Description
Hi,
can you implemented pseudo-class checked? I think it could be like that:
```
private static class CheckedCondition extends Condition {
CheckedCondition() {
}
@Override
boolean matches(Object e, AttributeResolver attRes, TreeResolver treeRes) {
String result = attRes.getAttributeValue(e, "checked");
return result != null;
}
}
```
But I really dont know how implemented general sibling combinator (~ tilde)...
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.