gngr icon indicating copy to clipboard operation
gngr copied to clipboard

a cross-platform browser focussed on privacy.

Results 102 gngr issues
Sort by recently updated
recently updated
newest added

`NodeListImpl` and `DescendantHTMLCollection` currently have a simple hack to support `hasOwnProperty`. A general solution needs to be found, that also supports dynamically set properties.

DOM
javascript

`Javascript.getInstance` returns a global instance. This global instance has a cache for all wrapped objects. As a precaution this cache shouldn't be shared across different documents. Either, - Use a...

need-advice
javascript
security

In current master, there is optimisation in place to detect layout related style changes when an element is hovered. But it is a simple binary function: invalidate layout or not....

layout
optimisation

Element should be included in the result only once. ### Solution 1 Rewrite the current implementation. The DOM should be walked only once and every element should be checked against...

As clarified in [this issue](https://github.com/w3c/web-platform-tests/issues/1264)

bug
DOM
javascript

Currently jStyleParser has two types of analysers: - A DirectAnalyser which accepts a single element, and returns `NodeData` for that element. - `Analyser.evaluateDOM` which processes the whole DOM and creates...

css
optimisation

In my quick tests, setting the optimisation level to 9 works fine (as in no errors with a few JS tests). However, it makes most sense to do this after...

javascript
optimisation

For example, the prototype of `CanvasRenderingContext2D` should be modifiable, even though it can't be instantiated directly. [Test case](https://uprootlabs.github.io/gngrTestCases/test-case/canvas/roundedRectangle.html)

javascript

@mateli I am very interested in the note you added to the wiki, about AOT code verification. Please comment here if you know of a practical example / guide to...

enhancement
need-advice