gngr
gngr copied to clipboard
a cross-platform browser focussed on privacy.
It seems that total height of body element (including margin) always grows to fill the view port. Need to confirm.
In a page generate by javadoc, the links are always supposed to be in bold. They define this rule: ``` css td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst...
Currently, only descendants are checked. However, we need to check siblings also because of sibling selectors. CSS 2 defines the `next sibling` selector. Eg `div:hover + .next` While CSS Selectors...
When scrolling, `RCollection.updatWidgetBounds()` is called recursively on the sub-scene. Not sure what the reasons are, but we could potentially optimise this through a translation of the graphics context of the...
As documented in [this commit](https://github.com/mozilla/rhino/commit/09dbbd3de3f0f374f3548d5fe6145720094d2f86): The `initSafeStandardObjects(scope, sealed)` API allows creation of a super-global object that can be shared across several top-level scopes. Not sure how much performance impact this...
For example: `target.style.background` or `getComputedStyle(target, null).background`.
Upstream issue: https://github.com/radkovo/jStyleParser/issues/36
Currently it gets loaded during the layout phase. This was probably done in lobo to allow an optimisation: hidden iframes need not be loaded. The optimisation (from lobo) is disabled...
### Current status We are able to parse XML using `javax.xml.parsers.DocumentBuilderFactory`. However, this returns a `Document` that is implemented in an internal package `com.sun`. This causes a problem when being...