Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ru] remove the attr- prefix from hashs #17025

Merged
merged 3 commits into from
Dec 2, 2023
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 @@ -266,7 +266,7 @@ function draw(img) {
- {{domxref("HTMLCanvasElement.toDataURL", "canvas.toDataURL('image/jpeg', quality)")}}
- : Создаёт изображение в формате JPG. Дополнительно вы можете задать параметр "качество" (quality) в диапазоне от 0 до 1, причём единица задаёт лучшее качество и 0 - почти не распознаваемый, но небольшой по размеру файл.

После того как вы создали URI данные из своего холста, вы можете использовать его как источник любого {{HTMLElement ("image")}} или поместить его в гиперссылку с [download attribute](/ru/docs/Web/HTML/Element/a#attr-download), чтобы сохранить его на диске, например.
После того как вы создали URI данные из своего холста, вы можете использовать его как источник любого {{HTMLElement ("image")}} или поместить его в гиперссылку с [download attribute](/ru/docs/Web/HTML/Element/a#download), чтобы сохранить его на диске, например.

Вы также можете создать {{domxref ("Blob")}} из холста.

Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/api/document/write/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ document.write(разметка);

> **Примечание:** `document.write` и `document.writeln` [не работают в XHTML документах](/ru/docs/Archive/Web/Writing_JavaScript_for_HTML) (выводится сообщение "Операция не поддерживается" \[`NS_ERROR_DOM_NOT_SUPPORTED_ERR`] в консоли ошибок). Это случается при открытии локального файла с расширением .xhtml или для любых документов, обрабатываемых с [типом MIME](/ru/docs/Glossary/MIME_type) - `application/xhtml+xml` . Больше информации доступно по адресу [W3C XHTML FAQ](http://www.w3.org/MarkUp/2004/xhtml-faq#docwrite).

> **Примечание:** `document.write` в [отложенных](/ru/docs/Web/HTML/Element/script#attr-defer) или [асинхронных](/ru/docs/Web/HTML/Element/script#attr-async) сценариях игнорируется и выводится сообщение типа "Проигнорирован вызов `document.write()` из асинхронно загруженного внешнего сценария" в консоли ошибок.
> **Примечание:** `document.write` в [отложенных](/ru/docs/Web/HTML/Element/script#defer) или [асинхронных](/ru/docs/Web/HTML/Element/script#async) сценариях игнорируется и выводится сообщение типа "Проигнорирован вызов `document.write()` из асинхронно загруженного внешнего сценария" в консоли ошибок.

> **Примечание:** В Edge вызов `document.write` в `iframe` более одного раза приводит к ошибке SCRIPT70: Доступ запрещён.

Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/api/storage_access_api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ These cookie blocking policies are known to break embedded cross-origin content

The Storage Access API is intended to solve this problem; embedded cross-origin content can request unrestricted access to its first-party storage on a site-by-site basis via the {{domxref("Document.requestStorageAccess()")}} method, and check whether it already has access via the {{domxref("Document.hasStorageAccess()")}} method.

In addition, sandboxed {{htmlelement("iframe")}}s cannot be granted storage access by default for security reasons. The API therefore also adds the `allow-storage-access-by-user-activation` [sandbox token](/ru/docs/Web/HTML/Element/iframe#attr-sandbox). The embedding website needs to add this to allow storage access requests to be successful, along with `allow-scripts` and `allow-same-origin` to allow it to call the API, and execute in an origin that can have cookies:
In addition, sandboxed {{htmlelement("iframe")}}s cannot be granted storage access by default for security reasons. The API therefore also adds the `allow-storage-access-by-user-activation` [sandbox token](/ru/docs/Web/HTML/Element/iframe#sandbox). The embedding website needs to add this to allow storage access requests to be successful, along with `allow-scripts` and `allow-same-origin` to allow it to call the API, and execute in an origin that can have cookies:

```html
<iframe
Expand Down
4 changes: 3 additions & 1 deletion files/ru/web/css/_colon_placeholder-shown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ title: ":placeholder-shown"
slug: Web/CSS/:placeholder-shown
---

{{CSSRef}}{{SeeCompatTable}}[CSS псевдокласс](/ru/docs/Web/CSS) **`:placeholder-shown`** представляет любой {{htmlElement("input")}} или {{htmlElement("textarea")}} элемент, который отображает в данный момент [текст заполнитель (плейсхолдер)](/ru/docs/Web/HTML/Element/input#attr-placeholder).
{{CSSRef}}{{SeeCompatTable}}

[CSS псевдокласс](/ru/docs/Web/CSS) **`:placeholder-shown`** представляет любой {{htmlElement("input")}} или {{htmlElement("textarea")}} элемент, который отображает в данный момент [текст заполнитель (плейсхолдер)](/ru/docs/Web/HTML/Element/input#placeholder).

```css
/* Выбирает любой элемент с активным плейсхолдером */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ slug: Web/CSS/::-webkit-slider-thumb

## Описание

`Псевдоэлемент CSS ::-webkit-slider-thumb` представляет собой ползунок, передвигаемый пользователем по линейке элемента {{HTMLElement("input")}} типа `"range"` для изменения числового значения атрибута [value](/ru/docs/Web/HTML/Element/input#attr-value).
`Псевдоэлемент CSS ::-webkit-slider-thumb` представляет собой ползунок, передвигаемый пользователем по линейке элемента {{HTMLElement("input")}} типа `"range"` для изменения числового значения атрибута [value](/ru/docs/Web/HTML/Element/input#value).

## Спецификация

Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/css/_doublecolon_after/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ a::after {

### Подсказки

Следующий пример показывает использование [псевдоэлемента](/ru/docs/Web/CSS/Pseudo-elements) `::after` в сочетании с CSS-выражением [`attr()`](/ru/docs/Web/CSS/attr) и [пользовательского `data-*` атрибута](/ru/docs/Web/HTML/Global_attributes#attr-dataset) `data-descr` для создания _подсказки_ на чистом CSS.
Следующий пример показывает использование [псевдоэлемента](/ru/docs/Web/CSS/Pseudo-elements) `::after` в сочетании с CSS-выражением [`attr()`](/ru/docs/Web/CSS/attr) и [пользовательского `data-*` атрибута](/ru/docs/Web/HTML/Global_attributes/data-*) `data-descr` для создания _подсказки_ на чистом CSS.

#### HTML

Expand Down
8 changes: 4 additions & 4 deletions files/ru/web/html/content_categories/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ slug: Web/HTML/Content_categories
Несколько других элементов, которые тоже принадлежат к этому типу, но требуют определённых условий:

- {{HTMLElement("area")}}, только внутри элемента {{HTMLElement("map")}}
- {{HTMLElement("link")}}, при наличии атрибута [`itemprop`](/ru/docs/HTML/Global_attributes#attr-itemprop)
- {{HTMLElement("meta")}}, при наличии атрибута [`itemprop`](/ru/docs/HTML/Global_attributes#attr-itemprop)
- {{HTMLElement("link")}}, при наличии атрибута [`itemprop`](/ru/docs/Web/HTML/Global_attributes#itemprop)
- {{HTMLElement("meta")}}, при наличии атрибута [`itemprop`](/ru/docs/Web/HTML/Global_attributes#itemprop)
- {{HTMLElement("style")}}, при наличии атрибута [`scoped`](/ru/docs/Web/HTML/Element/style#scoped)

### Секционный контент
Expand Down Expand Up @@ -66,9 +66,9 @@ slug: Web/HTML/Content_categories
- {{HTMLElement("area")}}, только внутри элемента {{HTMLElement("map")}}
- {{HTMLElement("del")}}, если содержит в себе только фразовый контент
- {{HTMLElement("ins")}}, если содержит в себе только фразовый контент
- {{HTMLElement("link")}}, при наличии атрибута [`itemprop`](/ru/docs/HTML/Global_attributes#attr-itemprop)
- {{HTMLElement("link")}}, при наличии атрибута [`itemprop`](/ru/docs/Web/HTML/Global_attributes#itemprop)
- {{HTMLElement("map")}}, если содержит в себе только фразовый контент
- {{HTMLElement("meta")}}, при наличии атрибута [`itemprop`](/ru/docs/HTML/Global_attributes#attr-itemprop)
- {{HTMLElement("meta")}}, при наличии атрибута [`itemprop`](/ru/docs/Web/HTML/Global_attributes#itemprop)

### Встроенный контент

Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/html/element/a/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ HTML-элемент `<a>` определяет гиперссылку для п
> - Этот атрибут соблюдается только на ресурсах с тем же доменом.

- `href`
- : Единственный обязательный атрибут для определения ссылки в HTML4, но больше необязательный в HTML5. Упущение этого атрибута создаёт ссылку-заполнитель. Атрибут `href` указывает ссылку: либо URL, либо якорь. Якорь — это название после символа `#`, который указывает на элемент ([ID](/ru/docs/HTML/Global_attributes#attr-id)) на текущей странице. URL не ограничены только ссылками на HTTP, они могут использовать любой протокол, поддерживающийся браузером. Например, `file`, `ftp` и `mailto` работают в большинстве браузеров.
- : Единственный обязательный атрибут для определения ссылки в HTML4, но больше необязательный в HTML5. Упущение этого атрибута создаёт ссылку-заполнитель. Атрибут `href` указывает ссылку: либо URL, либо якорь. Якорь — это название после символа `#`, который указывает на элемент ([ID](/ru/docs/Web/HTML/Global_attributes#id)) на текущей странице. URL не ограничены только ссылками на HTTP, они могут использовать любой протокол, поддерживающийся браузером. Например, `file`, `ftp` и `mailto` работают в большинстве браузеров.

> **Примечание:** Вы можете использовать специальное значение «top», чтобы создать ссылки в начало страницы, например: `<a href="#top">Вернуться наверх</a>`. [Это поведение указано в Спецификациях HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#scroll-to-fragid).

Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/html/element/menu/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ slug: Web/HTML/Element/menu
- `label` {{Deprecated_inline}}
- : The name of the menu as shown to the user. Used within nested menus, to provide a label through which the submenu can be accessed. Must only be specified when the parent element is a {{HTMLElement("menu")}} in the _context menu_ state.
- `type`
- : This attribute indicates the kind of menu being declared, and can be one of two values.\* `context` {{Deprecated_inline}} : Indicates the _popup menu_ state, which represents a group of commands activated through another element. This might be as a button menu referenced by a [`menu`](/ru/docs/Web/HTML/Element/button#menu) attribute of a {{HTMLElement("button")}} element, or as context menu for an element with a [`contextmenu`](/ru/docs/HTML/Global_attributes#attr-contextmenu) attribute. This value is the default if the attribute is missing and the parent element is also a `<menu>` element.
- : This attribute indicates the kind of menu being declared, and can be one of two values.\* `context` {{Deprecated_inline}} : Indicates the _popup menu_ state, which represents a group of commands activated through another element. This might be as a button menu referenced by a [`menu`](/ru/docs/Web/HTML/Element/button#menu) attribute of a {{HTMLElement("button")}} element, or as context menu for an element with a [`contextmenu`](/ru/docs/Web/HTML/Global_attributes#contextmenu) attribute. This value is the default if the attribute is missing and the parent element is also a `<menu>` element.
- `toolbar`: Indicates the _toolbar_ state, which represents a toolbar consisting of a series of commands for user interaction. This might be in the form of an unordered list of {{HTMLElement("li")}} elements, or, if the element has no `<li>` element children, [flow content](/ru/docs/Web/HTML/Content_categories#Flow_content) describing available commands. This value is the default if the attribute is missing.

## Примечания по использованию
Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/html/element/ol/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,5 @@ slug: Web/HTML/Element/ol

- свойство {{CSSxRef("list-style")}}, для порядковых показов
- [CSS счётчики](/ru/docs/Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters), для более сложных вложенных списков
- свойство [line-height](/ru/docs/Web/CSS/line-height), для замены убранного свойства [compact](/ru/docs/Web/HTML/Element/ol#attr-compact)
- свойство [line-height](/ru/docs/Web/CSS/line-height), для замены убранного свойства `compact`
- Свойство [margin](/ru/docs/Web/CSS/margin), для контроля отступа в списке
Loading