dSalieri

Results 21 comments of dSalieri

@siddiq-rehman code was performed like `.mjs`

@Kaiido At some time I decided simplify my example and I used just a Promise without anything. But okay here you're right. Well in that case look at this example:...

@domenic Are there words speaking that `window.openWindow` and `window.openTab` are [Transient activation-consuming APIs](https://html.spec.whatwg.org/multipage/interaction.html#activation-consuming-api)? Because in the current spec I found nothing that express that `window.open` is [Transient activation-consuming API](https://html.spec.whatwg.org/multipage/interaction.html#activation-consuming-api) (its...

@domfarolino what you wrote completely describes my understanding. As far as I know, the IDL specification describes [creation of platform objects](https://webidl.spec.whatwg.org/#new) And when creating a platform object, the Realm must...

@ADKaster thanks for your comment, it was really helpful to know what the browser developer does in this case.

> That last sentence is not always true. DOM calls the removing steps [on every node in the removed subtree](https://dom.spec.whatwg.org/#ref-for-concept-node-remove-ext%E2%91%A1), so a removed node's "tree" could still be one of...

@domfarolino Looks good, I think. I've modified the [demoscene](https://strong-supreme-rail.glitch.me/) to suit your tests and added the ability to give a custom element a `"form"` attribute with any value. You can...

@bakkot thanks, I've invesigated my questions owing to your tips ;) Answer to my questions: 1) If we don't create Execution Context, we will get _**null**_ in **[[ScriptOrModule]]** of _FunctionDeclaration_...