diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-pt/web/api/mathmlelement | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-pt/web/api/mathmlelement')
-rw-r--r-- | files/pt-pt/web/api/mathmlelement/index.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/files/pt-pt/web/api/mathmlelement/index.html b/files/pt-pt/web/api/mathmlelement/index.html new file mode 100644 index 0000000000..ee2504017a --- /dev/null +++ b/files/pt-pt/web/api/mathmlelement/index.html @@ -0,0 +1,72 @@ +--- +title: MathMLElement +slug: Web/API/MathMLElement +tags: + - API + - Interface + - MathML + - MathMLElement + - Referencia +translation_of: Web/API/MathMLElement +--- +<div>{{APIRef("MathML")}}</div> + +<p class="summary">A interface <strong><code>MathMLElement</code></strong> representa qualquer elemento <a href="/pt-PT/docs/Web/MathML">MathML</a>.</p> + +<h2 id="Propiedades">Propiedades</h2> + +<p><em>Esta interface não tem propriedades, mas herda propriedades de: {{DOMxRef("DocumentAndElementEventHandlers")}}, {{DOMxRef("Element")}}, {{DOMxRef("ElementCSSInlineStyle")}}, {{DOMxRef("GlobalEventHandlers")}}, {{DOMxRef("HTMLOrForeignElement")}}</em></p> + +<ul> +</ul> + +<h2 id="Métodos">Métodos</h2> + +<p><em>Esta interface não tem métodos, mas herda métodos de: {{DOMxRef("DocumentAndElementEventHandlers")}}, {{DOMxRef("Element")}}, {{DOMxRef("ElementCSSInlineStyle")}}, {{DOMxRef("GlobalEventHandlers")}}, {{DOMxRef("HTMLOrForeignElement")}}</em></p> + +<h2 id="Exemplos">Exemplos</h2> + +<h3 id="MathML">MathML</h3> + +<pre class="brush: html notranslate"><math xmlns="http://www.w3.org/1998/Math/MathML"> + <msqrt> + <mi>x</mi> + </msqrt> +</math></pre> + +<h3 id="JavaScript">JavaScript</h3> + +<pre class="brush: js notranslate">document.querySelector('msqrt').constructor.name; // MathMLElement</pre> + +<h2 id="Specification" name="Specification">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Estado</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td><a href="https://mathml-refresh.github.io/mathml-core/#dom-mathmlelement">MathMLElement interface</a></td> + <td></td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade">Compatibilidade</h2> + + + +<p>{{Compat("api.MathMLElement")}}</p> + +<h2 id="Ver_também">Ver também</h2> + +<ul> + <li>{{DOMxRef("Element")}}</li> + <li>{{DOMxRef("HTMLElement")}}</li> + <li>{{DOMxRef("SVGElement")}}</li> +</ul> |