Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ Before moving on, play with the different form controls in your local copy and s

The "Choose hotel room type" buttons are implemented using [`<input type="radio">`](/en-US/docs/Web/HTML/Reference/Elements/input/radio) controls. These render as a set of push button controls where only one of the set can be selected at any one time — you can't select more than one at once. They are named after the buttons found on old-fashioned radios, where you press one button and the previously-selected one pops out again.

Our example code look looks like this:
Our example code looks like this:

```html
<fieldset>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Note that you will need {{glossary("OpenSSL")}} installed locally as well as Bro

Compression algorithms are at risk of security attacks, so there are a number of restrictions for Compression Dictionary Transport, including:

- Dictionaries must same-origin with the resource using the dictionary.
- Dictionaries must be same-origin with the resource using the dictionary.
- Dictionary-compressed resources must be same-origin with the document origin, or follow the [CORS](/en-US/docs/Web/HTTP/Guides/CORS) rules, and so be requested with the [`crossorigin`](/en-US/docs/Web/HTML/Reference/Attributes/crossorigin) attribute and served with an appropriate {{HTTPHeader("Access-Control-Allow-Origin")}} header.
- Dictionaries are bound by the usual HTTP Cache partitioning and so cannot be shared between origins even if they download the same resources. The dictionary will need to be downloaded again for each origin.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ If `key` is stored as an actual reference, it would create a cyclic reference an
As a rough mental model, think of a `WeakMap` as the following implementation:

> [!WARNING]
> This is not a polyfill nor is anywhere close to how it's implemented in the engine (which hooks into the garbage collection mechanism).
> This is not a polyfill, nor is it anywhere close to how it's implemented in the engine (which hooks into the garbage collection mechanism).

```js
class MyWeakMap {
Expand Down
4 changes: 4 additions & 0 deletions files/jsondata/InterfaceData.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,10 @@
"inh": "EventTarget",
"impl": []
},
"ClipboardChangeEvent": {
"inh": "Event",
"impl": []
},
"ClipboardEvent": {
"inh": "Event",
"impl": []
Expand Down