-
Notifications
You must be signed in to change notification settings - Fork 22.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into brian-learn-move
- Loading branch information
Showing
32 changed files
with
2,277 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
files/en-us/web/api/htmlembedelement/getsvgdocument/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: "HTMLEmbedElement: getSVGDocument() method" | ||
short-title: getSVGDocument | ||
slug: Web/API/HTMLEmbedElement/getSVGDocument | ||
page-type: web-api-instance-method | ||
browser-compat: api.HTMLEmbedElement.getSVGDocument | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`getSVGDocument()`** method of the {{domxref("HTMLEmbedElement")}} interface returns the {{domxref("Document")}} object of the embedded SVG. | ||
|
||
## Value | ||
|
||
A {{domxref("Document")}}. | ||
|
||
## Examples | ||
|
||
```js | ||
const svg = document.getElementById("el").getSVGDocument(); | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLIFrameElement.getSVGDocument")}} | ||
- {{domxref("HTMLObjectElement.getSVGDocument")}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: "HTMLEmbedElement: type property" | ||
short-title: type | ||
slug: Web/API/HTMLEmbedElement/type | ||
page-type: web-api-instance-property | ||
browser-compat: api.HTMLEmbedElement.type | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`type`** property of the {{domxref("HTMLEmbedElement")}} interface returns a string that reflects the `type` attribute of the {{HTMLElement("embed")}} element, indicating the {{glossary("MIME type")}} of the resource. It reflects the {{htmlelement("embed")}} element's [`type`](/en-US/docs/Web/HTML/Element/embed#type) attribute | ||
|
||
## Value | ||
|
||
A string; the MIME type of the resource. | ||
|
||
## Examples | ||
|
||
```js | ||
const el = document.getElementById("el"); | ||
console.log(el.type); // Output: "video/webp" | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLObjectElement.type")}} | ||
- {{domxref("HTMLSourceElement.type")}} | ||
- [Media types found on the web](/en-US/docs/Web/Media/Formats) | ||
- [Important MIME types for web developers](/en-US/docs/Web/HTTP/MIME_types#important_mime_types_for_web_developers) |
34 changes: 34 additions & 0 deletions
34
files/en-us/web/api/htmliframeelement/getsvgdocument/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: "HTMLIframeElement: getSVGDocument() method" | ||
short-title: getSVGDocument | ||
slug: Web/API/HTMLIframeElement/getSVGDocument | ||
page-type: web-api-instance-method | ||
browser-compat: api.HTMLIframeElement.getSVGDocument | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`getSVGDocument()`** method of the {{domxref("HTMLIframeElement")}} interface returns the {{domxref("Document")}} object of the embedded SVG. | ||
|
||
## Value | ||
|
||
A {{domxref("Document")}}. | ||
|
||
## Examples | ||
|
||
```js | ||
const svgDoc = document.getElementById("el").getSVGDocument(); | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLEmbedElement.getSVGDocument")}} | ||
- {{domxref("HTMLObjectElement.getSVGDocument")}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: "HTMLLinkElement: sizes property" | ||
short-title: sizes | ||
slug: Web/API/HTMLLinkElement/sizes | ||
page-type: web-api-instance-property | ||
browser-compat: api.HTMLLinkElement.sizes | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The readonly **`sizes`** property of the {{domxref("HTMLLinkElement")}} interfaces defines the sizes of the icons for visual media contained in the resource. It reflects the {{HTMLElement("link")}} element's [`sizes`](/en-US/docs/Web/HTML/Element/link#sizes) attribute, which takes a list of space-separated sizes, each in the format `<width in pixels>x<height in pixels>`, or the keyword `any`. | ||
|
||
It is only relevant if the {{domxref("HTMLLinkElement.rel", "rel")}} is `icon` or a non-standard type like `apple-touch-icon`. | ||
|
||
## Value | ||
|
||
A {{domxref("DOMTokenList")}} | ||
|
||
## Examples | ||
|
||
```html | ||
<link rel="icon" sizes="72x72 114x114" href="smallish.png" /> | ||
``` | ||
|
||
```js | ||
const link = document.querySelector("[rel=icon],[rel=apple-touch-icon]"); | ||
console.dir(link.sizes); /* output: | ||
DOMTokenList [ "72x72", "114x114" ] | ||
0: "72x72" | ||
1: "114x114" | ||
length: 2 | ||
value: "72x72 114x114" | ||
*/ | ||
console.log(link.sizes.value); // output: '72x72 114x114' | ||
console.log(link.sizes.length); // output: 2' | ||
console.log(link.sizes[0]); // output: '72x72' | ||
console.log(link.sizes[1]); // output: '114x114' | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLLinkElement.rel")}} | ||
- {{domxref("HTMLLinkElement.relList")}} | ||
- {{domxref("HTMLLinkElement.type")}} | ||
- {{domxref("HTMLLinkElement.href")}} | ||
- {{HTMLElement("link")}} | ||
- [`rel`](/en-US/docs/Web/HTML/Attributes/rel) attribute |
34 changes: 34 additions & 0 deletions
34
files/en-us/web/api/htmlobjectelement/getsvgdocument/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: "HTMLObjectElement: getSVGDocument() method" | ||
short-title: getSVGDocument | ||
slug: Web/API/HTMLObjectElement/getSVGDocument | ||
page-type: web-api-instance-method | ||
browser-compat: api.HTMLObjectElement.getSVGDocument | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`getSVGDocument()`** method of the {{domxref("HTMLObjectElement")}} interface returns the {{domxref("Document")}} object of the embedded SVG. | ||
|
||
## Value | ||
|
||
A {{domxref("Document")}}. | ||
|
||
## Examples | ||
|
||
```js | ||
const svg = document.getElementById("el").getSVGDocument(); | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLIFrameElement.getSVGDocument")}} | ||
- {{domxref("HTMLEmbedElement.getSVGDocument")}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: "HTMLTrackElement: default property" | ||
short-title: default | ||
slug: Web/API/HTMLTrackElement/default | ||
page-type: web-api-instance-property | ||
browser-compat: api.HTMLTrackElement.default | ||
--- | ||
|
||
{{ApiRef("HTML DOM")}} | ||
|
||
The **`default`** property of the {{domxref("HTMLTrackElement")}} interface represents whether the track will be enabled if the user's preferences do not indicate that another track would be more appropriate. It reflects the {{htmlelement("track")}} element's boolean [`default`](/en-US/docs/Web/HTML/Element/track#default) attribute, returning `true` if present and `false` otherwise. | ||
|
||
## Value | ||
|
||
A Boolean. | ||
|
||
## Example | ||
|
||
```js | ||
const trackElement = document.getElementById("exampleTrack"); | ||
console.log(trackElement.default); | ||
trackElement.default = true; | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLTrackElement.kind")}} | ||
- {{domxref("HTMLTrackElement.label")}} |
Oops, something went wrong.