Skip to content

Commit

Permalink
Merge branch 'main' into remove/es-orphaned-web-html-element-blink
Browse files Browse the repository at this point in the history
  • Loading branch information
Graywolf9 authored Nov 28, 2023
2 parents 1409c84 + 86062e6 commit 99616b0
Show file tree
Hide file tree
Showing 16 changed files with 379 additions and 315 deletions.
4 changes: 0 additions & 4 deletions files/es/_redirects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@
/es/docs/HTML/Elemento/abbr /es/docs/Web/HTML/Element/abbr
/es/docs/HTML/Elemento/acronym /es/docs/Web/HTML/Element/acronym
/es/docs/HTML/Elemento/address /es/docs/Web/HTML/Element/address
/es/docs/HTML/Elemento/applet /es/docs/orphaned/Web/HTML/Element/applet
/es/docs/HTML/Elemento/area /es/docs/Web/HTML/Element/area
/es/docs/HTML/Elemento/article /es/docs/Web/HTML/Element/article
/es/docs/HTML/Elemento/aside /es/docs/Web/HTML/Element/aside
Expand Down Expand Up @@ -790,7 +789,6 @@
/es/docs/HTML:Elemento:abbr /es/docs/Web/HTML/Element/abbr
/es/docs/HTML:Elemento:acronym /es/docs/Web/HTML/Element/acronym
/es/docs/HTML:Elemento:address /es/docs/Web/HTML/Element/address
/es/docs/HTML:Elemento:applet /es/docs/orphaned/Web/HTML/Element/applet
/es/docs/HTML:Elemento:area /es/docs/Web/HTML/Element/area
/es/docs/HTML:Elemento:b /es/docs/Web/HTML/Element/b
/es/docs/HTML:Elemento:base /es/docs/Web/HTML/Element/base
Expand Down Expand Up @@ -2013,7 +2011,6 @@
/es/docs/Web/HTML/Canvas /es/docs/Web/API/Canvas_API
/es/docs/Web/HTML/Canvas/A_basic_ray-caster /es/docs/orphaned/Web/API/Canvas_API/A_basic_ray-caster
/es/docs/Web/HTML/Consejos_para_la_creación_de_páginas_HTML_de_carga_rápida /es/docs/Learn/HTML/Howto/Author_fast-loading_HTML_pages
/es/docs/Web/HTML/Element/applet /es/docs/orphaned/Web/HTML/Element/applet
/es/docs/Web/HTML/Element/basefont /es/docs/conflicting/Web/CSS/CSS_Fonts
/es/docs/Web/HTML/Element/bgsound /es/docs/Web/HTML/Element/audio
/es/docs/Web/HTML/Element/content /es/docs/Web/HTML/element/slot
Expand All @@ -2026,7 +2023,6 @@
/es/docs/Web/HTML/Elemento/abbr /es/docs/Web/HTML/Element/abbr
/es/docs/Web/HTML/Elemento/acronym /es/docs/Web/HTML/Element/acronym
/es/docs/Web/HTML/Elemento/address /es/docs/Web/HTML/Element/address
/es/docs/Web/HTML/Elemento/applet /es/docs/orphaned/Web/HTML/Element/applet
/es/docs/Web/HTML/Elemento/area /es/docs/Web/HTML/Element/area
/es/docs/Web/HTML/Elemento/article /es/docs/Web/HTML/Element/article
/es/docs/Web/HTML/Elemento/aside /es/docs/Web/HTML/Element/aside
Expand Down
6 changes: 3 additions & 3 deletions files/es/_wikihistory.json
Original file line number Diff line number Diff line change
Expand Up @@ -15299,9 +15299,9 @@
"jesanchez"
]
},
"orphaned/Web/HTML/Element/applet": {
"modified": "2019-03-23T23:42:26.076Z",
"contributors": ["Sebastianz", "teoli", "Jorolo"]
"orphaned/Web/HTML/Element/blink": {
"modified": "2019-10-10T16:37:40.291Z",
"contributors": ["teoli", "jcr4"]
},
"orphaned/Web/HTML/Element/command": {
"modified": "2019-10-05T04:48:52.506Z",
Expand Down
229 changes: 0 additions & 229 deletions files/es/orphaned/web/html/element/applet/index.md

This file was deleted.

65 changes: 65 additions & 0 deletions files/es/web/api/window/getscreendetails/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
title: "Window: método getScreenDetails()"
slug: Web/API/Window/getScreenDetails
l10n:
sourceCommit: e089abbca14964a8ce945135d954cbfd098fd6f7
---

{{APIRef("Window Management API")}}{{SeeCompatTable}}{{securecontext_header}}

El método **`getScreenDetails()`** de la interfaz {{domxref("Window")}} devuelve una {{jsxref("Promise", "Promesa")}} que cumple con la instancia del objeto {{domxref("ScreenDetails")}} representando los detalles de todas las pantallas disponibles del dispositivo del usuario.

## Sintaxis

```js-nolint
getScreenDetails()
```

### Parametros

Ninguno.

### Valor devuelto

Una {{jsxref("Promise", "Promesa")}} que cumple con la instancia de un objeto {{domxref("ScreenDetails")}}.

### Excepciones

- `NotAllowedError` {{domxref("DOMException")}}
- : Se produce si se establece una [Politica de permisos](/es/docs/Web/HTTP/Permissions_Policy) de {{httpheader("Permissions-Policy/window-management", "administración de ventanas")}} que bloquea el uso del [API de administracion de ventanas](/es/docs/Web/API/Window_Management_API), o si el usuario ha negado explícitamente la solicitud de permiso del navegador para utilizar la API.

## Ejemplos

Cuando `getScreenDetails()` es invocado se le pedirá permiso al usuario para administrar ventanas en todas sus pantallas (el estado de este permiso se puede verificar usando {{domxref("Permissions.query()")}} para consultar `window-management`). Cuando se concede el permiso, el objeto {{domxref("ScreenDetails")}} resultante contiene todos los detalles de todas las pantallas disponibles para el sistema del usuario.

El siguiente ejemplo abre una ventana de tamaño completo en cada pantalla disponible.

```js
const screenDetails = await window.getScreenDetails();

// Abre una ventana de tamaño completo en cada pantalla disponible.
for (const screen of screenDetails.screens) {
window.open(
"https://example.com",
"_blank",
`left=${screen.availLeft},
top=${screen.availTop},
width=${screen.availWidth},
height=${screen.availHeight}`,
);
}
```

> **Nota:** Consulta [Entorno de aprendizaje de multiples ventanas](https://mdn.github.io/dom-examples/window-management-api/) para un ejemplo completo (consulta también el [codigo fuente](https://github.com/mdn/dom-examples/tree/main/window-management-api)).
## Especificaciones

{{Specifications}}

## Compatibilidad con navegadores

{{Compat}}

## Véase también

- [API de administración de ventanas](/es/docs/Web/API/Window_Management_API)
14 changes: 2 additions & 12 deletions files/es/web/html/attributes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Los elementos en HTML tienen **atributos**; estos son valores adicionales que co
</tr>
<tr>
<td><code>align</code></td>
<td>{{ HTMLElement("applet") }}, {{ HTMLElement("caption") }}, {{ HTMLElement("col") }}, {{ HTMLElement("colgroup") }}, {{ HTMLElement("hr") }}, {{ HTMLElement("iframe") }}, {{ HTMLElement("img") }}, {{ HTMLElement("table") }}, {{ HTMLElement("tbody") }}, {{ HTMLElement("td") }}, {{ HTMLElement("tfoot") }} , {{ HTMLElement("th") }}, {{ HTMLElement("thead") }}, {{ HTMLElement("tr") }}</td>
<td>{{ HTMLElement("caption") }}, {{ HTMLElement("col") }}, {{ HTMLElement("colgroup") }}, {{ HTMLElement("hr") }}, {{ HTMLElement("iframe") }}, {{ HTMLElement("img") }}, {{ HTMLElement("table") }}, {{ HTMLElement("tbody") }}, {{ HTMLElement("td") }}, {{ HTMLElement("tfoot") }} , {{ HTMLElement("th") }}, {{ HTMLElement("thead") }}, {{ HTMLElement("tr") }}</td>
<td>Especifica el alineamiento horizontal del elemento.</td>
</tr>
<tr>
<td><code>alt</code></td>
<td>{{ HTMLElement("applet") }}, {{ HTMLElement("area") }}, {{ HTMLElement("img") }}, {{ HTMLElement("input") }}</td>
<td>{{ HTMLElement("area") }}, {{ HTMLElement("img") }}, {{ HTMLElement("input") }}</td>
<td>Texto alternativo en caso de que la imagen no se pueda mostrar.</td>
</tr>
<tr>
Expand Down Expand Up @@ -116,16 +116,6 @@ Los elementos en HTML tienen **atributos**; estos son valores adicionales que co
<td><a href="/es/docs/Web/HTML/Atributos_globales" title="/es/docs/Web/HTML/Atributos globales">Atributo Global</a></td>
<td>Usualmente empleado con CSS para aplicar estilos a elementos con propiedades en comun.</td>
</tr>
<tr>
<td><code>code</code></td>
<td>{{ HTMLElement("applet") }}</td>
<td>Especifica la URL del archivo de tipo applet a ser cargado y ejecutado.</td>
</tr>
<tr>
<td><code>codebase</code></td>
<td>{{ HTMLElement("applet") }}</td>
<td>Este atributo contiene la URL absoluta o relativa del directorio donde los archivos de applets (.class) referenciados en el codigo se encuentran almacenados.</td>
</tr>
<tr>
<td><code>color</code></td>
<td>{{ HTMLElement("basefont") }}, {{ HTMLElement("font") }}, {{ HTMLElement("hr") }}</td>
Expand Down
1 change: 0 additions & 1 deletion files/es/web/html/element/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ Los Componentes Web son una tecnología relacionada con HTML que hacen que sea p
| Elemento | Descripción |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| {{HTMLElement("acronym")}} | Permite a los autores indicar claramente una secuencia de caracteres que componen un acrónimo o abreviatura de una palabra. |
| {{HTMLElement("applet")}} | **Sus etiquetas son**: \<applet> y \</applet> (ambas obligatorias) |
| {{HTMLElement("bgsound")}} | El elemento HTML de sonido de fondo (\<bgsound>) es un elemento de Internet Explorer que asocia un sonido de fondo con un página . |
| {{HTMLElement("big")}} | **big** de big=grande |
| {{HTMLElement("center")}} | **Sus etiquetas son**: \<center> y \</center> (ambas obligatorias). |
Expand Down
1 change: 0 additions & 1 deletion files/es/web/html/element/object/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,5 @@ Este elemento incluye los [global attributes](/es/docs/Web/HTML/Global_attribute

## See also

- {{HTMLElement("applet")}} {{deprecated_inline}}
- {{HTMLElement("embed")}}
- {{HTMLElement("param")}}
Loading

0 comments on commit 99616b0

Please sign in to comment.