diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/stylesheet/ownernode/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/stylesheet/ownernode/index.html')
-rw-r--r-- | files/fr/web/api/stylesheet/ownernode/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/fr/web/api/stylesheet/ownernode/index.html b/files/fr/web/api/stylesheet/ownernode/index.html new file mode 100644 index 0000000000..b1f3d9c1e3 --- /dev/null +++ b/files/fr/web/api/stylesheet/ownernode/index.html @@ -0,0 +1,41 @@ +--- +title: StyleSheet.ownerNode +slug: Web/API/StyleSheet/ownerNode +translation_of: Web/API/StyleSheet/ownerNode +--- +<div><font><font>{{APIRef ("CSSOM")}}</font></font></div> + +<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2> + +<p><strong><font><font>OwnerNode</font></font></strong><font><font> renvoie le noeud qui associe cette feuille de style au document.</font></font></p> + +<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2> + +<pre class="eval"><em><font><font>ObjRef</font></font></em><font><font> = stylesheet.ownerNode +</font></font></pre> + +<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2> + +<pre class="eval"><font><font><Html></font></font><font><font> + <Tête></font></font><font><font> + <Link rel = "StyleSheet" href = "example.css" type = "text / css" /></font></font><font><font> + <Script></font></font><font><font> + Function stilo () {</font></font><font><font> + Alerte (document.styleSheets [0] .ownerNode);</font></font><font><font> + }</font></font><font><font> + </ Script> </font></font><font><font> + </ Head></font></font><font><font> + <Body></font></font><font><font> + <Button onclick = "stilo ()"> ss </ button></font></font><font><font> + </ Body></font></font><font><font> +</ Html></font></font><font><font> +// affiche "objet HTMLLinkElement"</font></font> +</pre> + +<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2> + +<p><font><font>Pour HTML, </font></font><strong><font><font>ownerNode</font></font></strong><font><font> peut être l' </font><font>élément </font></font><a href="en/LINK"><font><font>LINK</font></font></a><font><font> ou </font></font><a href="en/STYLE"><font><font>STYLE</font></font></a><font><font> correspondant </font><font>. </font><font>Pour XML, il peut s'agir des instructions de traitement de liaison. </font><font>Pour les feuilles de style qui sont incluses dans d'autres feuilles de style, la valeur de cet attribut est NULL.</font></font></p> + +<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2> + +<p><font><font>DOM Styles de niveau 2 - FEUILLE DE STYLES</font></font></p> |