From 037a4118c4324d39fdef8bd23f9dd21b02f50946 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Thu, 15 Jul 2021 13:01:50 -0400 Subject: delete pages that were never translated from en-US (pl, part 1) (#1549) --- files/pl/web/api/window/content/index.html | 43 ------------------------------ 1 file changed, 43 deletions(-) delete mode 100644 files/pl/web/api/window/content/index.html (limited to 'files/pl/web/api/window/content') diff --git a/files/pl/web/api/window/content/index.html b/files/pl/web/api/window/content/index.html deleted file mode 100644 index 66eed370a9..0000000000 --- a/files/pl/web/api/window/content/index.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: window.content -slug: Web/API/Window/content -tags: - - DOM - - Dokumentacja_Gecko_DOM - - Gecko - - Strony_wymagające_dopracowania - - Wszystkie_kategorie -translation_of: Web/API/Window/content ---- -

{{ ApiRef() }}

- -

Podsumowanie

- -

Zwraca obiekt Window dla zawartości głównego okna. This is useful in XUL windows that have a <browser> (or tabbrowser or <iframe>) with type="content-primary" attribute on it - the most famous example is Firefox main window, browser.xul. In such cases, content returns a reference to the Window object for the document currently displayed in the browser. It is a shortcut for browserRef.contentWindow.

- -

In unprivileged content (webpages), content is normally equivalent to top (except in the case of a webpage loaded in a sidebar, content still refers to the Window of the currently selected tab).

- -

Some examples use _content instead of content. The former has been deprecated for a long time, and you should use content in the new code.

- -

Składnia

- -
var windowObject = window.content;
-
- -

Przykład

- -

Executing the following code in a chrome XUL window with a <browser type="content-primary"/> element in it draws a red border around the first div on the page currently displayed in the browser:

- -
content.document.getElementsByTagName("div")[0].style.border = "solid red 1px";
-
- -

Specyfikacja

- -

Nie jest częścią żadnej specyfikacji.

- -

Zobacz także

- - -- cgit v1.2.3-54-g00ecf