html
html copied to clipboard
HTML Standard
https://html.spec.whatwg.org/multipage/iframe-embed-object.html#shared-attribute-processing-steps-for-iframe-and-frame-elements In step 4.2. we call out to `run iframe load event steps` given `element`, which expects an `iframe` parameter. However, the `element` at this point may also be a...
The [definition of HostResolveImportedModule](https://html.spec.whatwg.org/#hostresolveimportedmodule(referencingscriptormodule,-modulerequest)) links to [ES](https://tc39.es/ecma262/#sec-hostresolveimportedmodule) but implements the version in [import assertions](https://tc39.es/proposal-import-assertions/#sec-hostresolveimportedmodule), which took me a minute to find. It would be better to link to the latter,...
In Node.js we have implemented a Node.js specific ability for various built-in objects to provide their own serialization/deserialization for cloning or transfer. The mechanism work by placing a platform host...
Issue: https://github.com/whatwg/html/issues/3595 - [ ] At least two implementers are interested (and none opposed): * WebKit * Blink - [ ] [Tests](https://github.com/web-platform-tests/wpt) are written and can be reviewed and commented...
https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-decimal > decimal: The user agent should display a virtual keyboard capable of fractional numeric input. Numeric keys and the format separator for the locale should be shown. Currently we...
Hi! I plan to propose a refactor to the import-related host hooks of ECMA-262, and this PR shows how it would affect HTML. Currently, ECMA-262 has two host hooks: -...
A common practice to quote in the web is utilizing the blockquote and cite tags to present context as a quoted source. When authoring articles, documentation in particular, there's often...
Feature proposal issue: https://github.com/whatwg/html/issues/7785 Explainer: https://open-ui.org/components/popup.research.explainer TODO list: * Add more descriptive text for web developers and for implementers. @domenic, can you point me to some examples? * Add examples...
WebDriver BiDi wants to invoke the 'traverse the history by a delta` algorithm, and get a callback whenever the algoritihm has run to completion, either by failing or by the...
The [triggered by user activation](https://html.spec.whatwg.org/#triggered-by-user-activation) logic allows for this state to flow between cross-origin iframes via postMessage. Unfortunately there's no good way for script to query whether it's currently in...