From f2e4db7e66350cc99b397c2239b1b54abce772ad Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 4 Feb 2022 14:38:56 +0300 Subject: [PATCH] minor fixes --- 3-frames-and-windows/03-cross-window-communication/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-frames-and-windows/03-cross-window-communication/article.md b/3-frames-and-windows/03-cross-window-communication/article.md index 93f81fa6..0aa9abfe 100644 --- a/3-frames-and-windows/03-cross-window-communication/article.md +++ b/3-frames-and-windows/03-cross-window-communication/article.md @@ -117,7 +117,7 @@ document.domain = 'site.com'; That's all. Now they can interact without limitations. Again, that's only possible for pages with the same second-level domain. ```warn header="Deprecated, but still working" -The `document.domain` property is in the process of being removed from the [specification](https://html.spec.whatwg.org/multipage/origin.html#relaxing-the-same-origin-restriction). The cross-window messaging (explained below) is the suggested replacement. +The `document.domain` property is in the process of being removed from the [specification](https://html.spec.whatwg.org/multipage/origin.html#relaxing-the-same-origin-restriction). The cross-window messaging (explained soon below) is the suggested replacement. That said, as of now all browsers support it. And the support will be kept for the future, not to break old code that relies on `document.domain`. ```