diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/nl/web/api/comment | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/nl/web/api/comment')
-rw-r--r-- | files/nl/web/api/comment/index.html | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/files/nl/web/api/comment/index.html b/files/nl/web/api/comment/index.html deleted file mode 100644 index 432fbd60d0..0000000000 --- a/files/nl/web/api/comment/index.html +++ /dev/null @@ -1,137 +0,0 @@ ---- -title: Comment -slug: Web/API/Comment -translation_of: Web/API/Comment ---- -<p>{{ ApiRef("DOM") }}</p> - -<p>De <code><strong>Comment</strong></code> interface is een text notitie binnen de markup; hoewel ze niet zichtbaar op de pagina zijn, zijn ze wel te lezen in de sourceview. Comments zijn er in HTML en XML door het tussen '<code><!--</code>' en '<code>--></code>' te zetten. In XML, kan je '<code>--</code>' niet in een comment gebruiken.</p> - -<p>{{InheritanceDiagram}}</p> - -<h2 id="Eigenschappen">Eigenschappen</h2> - -<p><em>Deze interface heeft geen specifieke eigenschap, maar neemt die van zijn parent over, {{domxref("CharacterData")}}, en indirect die van {{domxref("Node")}}. </em></p> - -<h2 id="Constructor">Constructor</h2> - -<dl> - <dt>{{ domxref("Comment.Comment()", "Comment()") }} {{experimental_inline}}</dt> - <dd>Retourneert een <code>Comment</code> object met de parameter als tekstinhoud.</dd> -</dl> - -<h2 id="Methoden">Methoden</h2> - -<p><em>Deze interface heeft geen specifieke methode, maar neemt die van zijn parent over, {{domxref("CharacterData")}}, en indirect die van {{domxref("Node")}}.</em></p> - -<h2 id="Specification" name="Specification">Specificaties</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Specification</th> - <th scope="col">Status</th> - <th scope="col">Comment</th> - </tr> - <tr> - <td>{{SpecName('DOM WHATWG', '#comment', 'Comment')}}</td> - <td>{{Spec2('DOM WHATWG')}}</td> - <td>Constructor toegevoegd.</td> - </tr> - <tr> - <td>{{SpecName('DOM3 Core', 'core.html#ID-1728279322', 'Comment')}}</td> - <td>{{Spec2('DOM3 Core')}}</td> - <td>Geen veranderingen aan {{SpecName('DOM2 Core')}}</td> - </tr> - <tr> - <td>{{SpecName('DOM2 Core', 'core.html#ID-1728279322', 'Comment')}}</td> - <td>{{Spec2('DOM2 Core')}}</td> - <td>Geen veranderingen aan{{SpecName('DOM1')}}</td> - </tr> - <tr> - <td>{{SpecName('DOM1', 'level-one-core.html#ID-1728279322', 'Comment')}}</td> - <td>{{Spec2('DOM1')}}</td> - <td>Eerste verschijning</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compabiliteit">Browser compabiliteit</h2> - -<p>{{CompatibilityTable}}</p> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Kenmerk</th> - <th>Chrome</th> - <th>Edge</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari</th> - </tr> - <tr> - <td>Normale support</td> - <td>1.0</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop("1.0")}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - </tr> - <tr> - <td><code>Comment()</code> constructor {{experimental_inline}}</td> - <td>{{CompatUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop("24.0")}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatUnknown}}</td> - <td>{{CompatUnknown}}</td> - </tr> - </tbody> -</table> -</div> - -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Kenmerk</th> - <th>Android</th> - <th>Edge</th> - <th>Firefox Mobile (Gecko)</th> - <th>IE Mobile</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - </tr> - <tr> - <td>Normale support</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoMobile("1.0")}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - </tr> - <tr> - <td><code>Comment()</code> constructor {{experimental_inline}}</td> - <td>{{CompatUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoMobile("24.0")}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatUnknown}}</td> - <td>{{CompatUnknown}}</td> - </tr> - </tbody> -</table> -</div> - -<h2 id="Zie_ook">Zie ook</h2> - -<ul> - <li><a href="/en-US/docs/DOM/DOM_Reference" title="/en-US/docs/DOM/DOM_Reference">The DOM interfaces index</a></li> -</ul> - -<p> </p> |