Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Domenic Denicola edited this page Aug 25, 2020 · 20 revisions

postMessage() APIs

  • HTML:
    • MessagePort: postMessage(message, transfer), postMessage(message, { transfer })
    • Window: postMessage(message, targetOrigin, transfer), postMessage(message, { transfer, targetOrigin })
    • BroadcastChannel: postMessage(message)
    • DedicatedWorkerGlobalScope: postMessage(message, transfer), postMessage(message, { transfer })
    • Worker: postMessage(message, transfer), postMessage(message, { transfer })
  • Service Workers:
    • Client: postMessage(message, transfer), postMessage(message, { transfer })
    • ServiceWorker: postMessage(message, transfer), postMessage(message, { transfer })
  • Portals:

Custom Elements

Warning: this is no longer kept up-to-date.

Custom elements is a feature that, until recently, was developed as monkey patches onto various specifications. This page helps implementers get a consolidated view of how custom elements have changed the HTML Standard.

These are the affected sections:

All relevant commits can be found in the list of pull requests tagged "topic: custom elements".

You may also be interested in similar information for changes to the DOM Standard.

Clone this wiki locally
Morty Proxy This is a proxified and sanitized view of the page, visit original site.