This commit is contained in:
Ilya Kantor 2019-08-13 13:42:36 +03:00
parent b9e6e757bb
commit 763aba5075
5 changed files with 243 additions and 95 deletions

View file

@ -85,9 +85,11 @@ if (confirm("Go to Wikipedia?")) {
Functions `alert/confirm/prompt` are also a part of BOM: they are directly not related to the document, but represent pure browser methods of communicating with the user.
```smart header="Specifications"
BOM is the part of the general [HTML specification](https://html.spec.whatwg.org).
Yes, you heard that right. The HTML spec at <https://html.spec.whatwg.org> is not only about the "HTML language" (tags, attributes), but also covers a bunch of objects, methods and browser-specific DOM extensions. That's "HTML in broad terms". Also, some parts have additional specs listed at <https://spec.whatwg.org>.
```
## Summary