diff --git a/files/ru/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.md b/files/ru/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.md index 3c02a2f1707283..e56e94316b2ec4 100644 --- a/files/ru/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.md +++ b/files/ru/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.md @@ -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")}} из холста. diff --git a/files/ru/web/api/document/write/index.md b/files/ru/web/api/document/write/index.md index 79436bb960620a..61e8f5580a917b 100644 --- a/files/ru/web/api/document/write/index.md +++ b/files/ru/web/api/document/write/index.md @@ -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: Доступ запрещён. diff --git a/files/ru/web/api/storage_access_api/index.md b/files/ru/web/api/storage_access_api/index.md index a86f5ef2ea06c9..a5f9a72c653ce6 100644 --- a/files/ru/web/api/storage_access_api/index.md +++ b/files/ru/web/api/storage_access_api/index.md @@ -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
``` -**Примечания:** XHTML документы с MathML должны быть поданы как `application/xhtml+xml`. Вы можете легко добиться этого, добавив `.xhtml` расширение для локальных файлов. Для серверов Apache вы можете [настроить `.htaccess` файл](http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addtype) для этого расширения на правильный тип MIME. Поскольку мы сохранили наш MathML в виде XML-документа, необходимо быть уверенным в правильно оформленном XML-документе. +{{ EmbedLiveSample('math_example', 700, 200, "", "") }} ## Спецификации @@ -122,6 +77,5 @@ slug: Web/MathML/Element/math ## Смотрите также -- HTML-элемент верхнего уровня: [``](/ru/docs/Web/HTML/Element/html) -- SVG элемент верхнего уровня: [`