Andrew Kaster
Andrew Kaster
This is required for the NaN Boxing implementation in LibJS. If NaN Boxing is not possible on a specific platform, then we would need to think really hard about how...
> Still why the boxing is different on different platforms? When we extract a pointer bits out of the NaN value, on some platforms we need to sign extend it...
> Are there some tests that could verify that this is working? `test-js` is the canonical one. Using the script, `Meta/serenity.sh test lagom JS`. Or if you have the `test-js`...
The last I looked at this, we failed to load a blob url in a worker. It also complained about cookies. Both of which sound like things @Lubrsi is familiar...
The [OpenSUSE guidelines](https://en.opensuse.org/openSUSE:Packaging_checks#binary-or-shlib-calls-gethostbyname) link to a [post](https://udrepper.livejournal.com/16116.html) by Ulrich Drepper (of all people :thinking: ) explaining why it's not great on IPv4 networks either, when a host has both an...
After the conversion to navigables and subsequent cleanup, `still_on_its_initial_about_blank_document()` is essentially a `return false;` function. We don't update the BrowsingContext's session history, and haven't for a long time. The spec...
I also saw in the spec: https://html.spec.whatwg.org/#concept-document-window > The [Window](https://html.spec.whatwg.org/#window) object has an associated Document, which is a [Document](https://html.spec.whatwg.org/#document) object. It is set when the [Window](https://html.spec.whatwg.org/#window) object is created, and...
... actually I think resetting the associated document is supposed to happen in - populate_session_history_entry_document - load_document - load_html_document - Document::create_and_initialize But we never get to load_document with the change...
Just to be sure, using the window named property `the_form` works, right? and it's just the property access on the form element that fails?
In order for the live website to work, we also need to implement named property access on the document. https://html.spec.whatwg.org/multipage/dom.html#dom-document-namedItem-which This is because the website uses constructs like this: `var...