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/id/web/html/element | |
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/id/web/html/element')
-rw-r--r-- | files/id/web/html/element/base/index.html | 154 | ||||
-rw-r--r-- | files/id/web/html/element/dialog/index.html | 165 | ||||
-rw-r--r-- | files/id/web/html/element/image/index.html | 16 | ||||
-rw-r--r-- | files/id/web/html/element/index.html | 106 |
4 files changed, 0 insertions, 441 deletions
diff --git a/files/id/web/html/element/base/index.html b/files/id/web/html/element/base/index.html deleted file mode 100644 index 6b4a556381..0000000000 --- a/files/id/web/html/element/base/index.html +++ /dev/null @@ -1,154 +0,0 @@ ---- -title: <base> -slug: Web/HTML/Element/base -translation_of: Web/HTML/Element/base ---- -<p id="Summary">{{HTMLRef}}</p> - -<p>The <strong>HTML <code><base></code> element</strong> specifies the base URL to use for all relative URLs contained within a document. There can be only one <code><base></code> element in a document. </p> - -<p>The base URL of a document can be queried from a script using {{domxref('document.baseURI')}}.</p> - -<table class="properties"> - <tbody> - <tr> - <th><a href="/en-US/docs/Web/HTML/Content_categories">Content categories</a></th> - <td>Metadata content.</td> - </tr> - <tr> - <th>Permitted content</th> - <td>None, it is an {{Glossary("empty element")}}.</td> - </tr> - <tr> - <th>Tag omission</th> - <td>There must be no closing tag.</td> - </tr> - <tr> - <th>Permitted parents</th> - <td>Any {{HTMLElement("head")}} that doesn't contain any other {{HTMLElement("base")}} element</td> - </tr> - <tr> - <th>Permitted ARIA roles</th> - <td>None</td> - </tr> - <tr> - <th>DOM interface</th> - <td>{{domxref("HTMLBaseElement")}}</td> - </tr> - </tbody> -</table> - -<h2 id="Attributes">Attributes</h2> - -<p>This element's attributes include the <a href="/en-US/docs/HTML/Global_attributes">global attributes</a>.</p> - -<dl> - <dt>{{htmlattrdef("href")}}</dt> - <dd>The base URL to be used throughout the document for relative URL addresses. If this attribute is specified, this element must come before any other elements with attributes whose values are URLs. Absolute and relative URLs are allowed.</dd> - <dt>{{htmlattrdef("target")}}</dt> - <dd>A name or keyword indicating the default location to display the result when hyperlinks or forms cause navigation, for elements that do not have an explicit target reference. It is a name of, or keyword for, a <em>browsing context</em> (for example: tab, window, or inline frame). The following keywords have special meanings: - <ul> - <li><code>_self</code>: Load the result into the same browsing context as the current one. This value is the default if the attribute is not specified.</li> - <li><code>_blank</code>: Load the result into a new unnamed browsing context.</li> - <li><code>_parent</code>: Load the result into the parent browsing context of the current one. If there is no parent, this option behaves the same way as <code>_self</code>.</li> - <li><code>_top</code>: Load the result into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as <code>_self</code>.</li> - </ul> - </dd> -</dl> - -<h2 id="Usage_notes">Usage notes</h2> - -<p>If multiple <code><base></code> elements are specified, only the first <strong>href</strong> and first <strong>target</strong> value are used; all others are ignored.</p> - -<h2 id="Examples">Examples</h2> - -<pre class="brush: html"><base href="http://www.example.com/page.html"> -<base target="_blank" href="http://www.example.com/page.html"> -</pre> - -<h2 id="Specifications">Specifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Specification</th> - <th scope="col">Status</th> - <th scope="col">Comment</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('HTML WHATWG', 'semantics.html#the-base-element', '<base>')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td>No change since last snapshot.</td> - </tr> - <tr> - <td>{{SpecName('HTML5 W3C', 'document-metadata#the-base-element', '<base>')}}</td> - <td>{{Spec2('HTML5 W3C')}}</td> - <td>Specified the behavior of <code>target</code></td> - </tr> - <tr> - <td>{{SpecName('HTML4.01', 'struct/links.html#h-12.4', '<base>')}}</td> - <td>{{Spec2('HTML4.01')}}</td> - <td>Added the <code>target</code> attribute</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility">Browser compatibility</h2> - -<p>{{CompatibilityTable}}</p> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Feature</th> - <th>Chrome</th> - <th>Edge</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari</th> - </tr> - <tr> - <td>Basic support</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop("1.0")}} [1]</td> - <td>{{CompatVersionUnknown}} [2]</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - </tr> - </tbody> -</table> -</div> - -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Feature</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>Basic support</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoMobile("1.0")}} [1]</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatVersionUnknown}}</td> - </tr> - </tbody> -</table> -</div> - -<p>[1] Support of relative URIs for <code>href</code> was added in Gecko 2.0 (Firefox 4.0)</p> - -<p>[2] Before Internet Explorer 7, <code><base></code> could be positioned anywhere in the document and the nearest value of <code><base></code> was used. Support for relative URLs has been removed in Internet Explorer 8</p> diff --git a/files/id/web/html/element/dialog/index.html b/files/id/web/html/element/dialog/index.html deleted file mode 100644 index ac51fecd40..0000000000 --- a/files/id/web/html/element/dialog/index.html +++ /dev/null @@ -1,165 +0,0 @@ ---- -title: '<dialog>: The Dialog element' -slug: Web/HTML/Element/dialog -translation_of: Web/HTML/Element/dialog ---- -<p>Elemen<strong> <code><dialog></code> </strong>menampilkan sebuah kotak dialog atau komponen interaktif lainnya seperti halnya inspektor atau jendela.</p> - -<p> </p> - -<table class="properties"> - <tbody> - <tr> - <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories">Kategori konten</a></th> - <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Alur Konten</a>, <a href="/en-US/docs/Web/HTML/Sections_and_Outlines_of_an_HTML5_document#Sectioning_roots">bagian akar</a></td> - </tr> - <tr> - <th scope="row">Konten yang diijinkan</th> - <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Alur konten</a></td> - </tr> - <tr> - <th scope="row">Penanda kesalahan</th> - <td>{{no_tag_omission}}</td> - </tr> - <tr> - <th scope="row">Tingkatan yang diijinkan</th> - <td>Setiap elemen yang menerima <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">alur konten</a></td> - </tr> - <tr> - <th scope="row">Peran Aria yang diijinkan</th> - <td>{{ARIARole("alertdialog")}}</td> - </tr> - <tr> - <th scope="row">Antarmuka DOM</th> - <td>{{domxref("HTMLDialogElement")}}</td> - </tr> - </tbody> -</table> - -<p><strong><span style="">Atribut</span></strong></p> - -<p>Elemen ini memiliki <a href="/en-US/docs/Web/HTML/Global_attributes">atribut global</a>. Penggunaan atribut <code>tabindex</code> harus dihindari pada elemen <code><dialog></code> .</p> - -<dl> - <dt>{{htmlattrdef("open")}}</dt> - <dd>Menandakan bahwa dialog telah aktif dan dapat digunakan. Ketika atribut <code>open</code> belum diatur, maka dialog tidak akan tampil kepada pengguna.</dd> -</dl> - -<h2 id="Catatan_penggunaan">Catatan penggunaan</h2> - -<p> </p> - -<ul> - <li>Elemen <code><form></code> dapat diintegrasikan didalam dialog dengan menspesifikasikannya menggunakan atribut <code>method="dialog"</code>. Ketika isi form dikirim, dialog akan tertutup dengan sebuah atribut <code>returnValue</code> dari <code>value</code> dari tombol kirim yang digunakan.</li> - <li>Elemen-pseudo CSS {{cssxref('::backdrop')}} dapat digunakan untuk menghiasi elemen <code><dialog></code>, sebagai contoh untuk membuat redup konten yand tidak boleh diakses saat dialog sedang aktif.</li> -</ul> - -<h2 id="Contoh">Contoh</h2> - -<h3 id="Contoh_sederhana">Contoh sederhana</h3> - -<pre class="brush: html"><dialog open> - <p>Greetings, one and all!</p> -</dialog> -</pre> - -<h3 id="Contoh_lanjutan">Contoh lanjutan</h3> - -<p>Pada contoh ini akan terbuka kotak dialog saat tombol "Update details" diklik.</p> - -<h4 id="HTML">HTML</h4> - -<pre class="brush: html"><!-- Simple pop-up dialog box, containing a form --> -<dialog open id="favDialog"> - <form method="dialog"> - <section> - <p><label for="favAnimal">Favorite animal:</label> - <select id="favAnimal"> - <option></option> - <option>Brine shrimp</option> - <option>Red panda</option> - <option>Spider monkey</option> - </select></p> - </section> - <menu> - <button id="cancel" type="reset">Cancel</button> - <button type="submit">Confirm</button> - </menu> - </form> -</dialog> - -<menu> - <button id="updateDetails">Update details</button> -</menu> -</pre> - -<h4 id="JavaScript">JavaScript</h4> - -<pre class="brush: js">(function() { - var updateButton = document.getElementById('updateDetails'); - var cancelButton = document.getElementById('cancel'); - var favDialog = document.getElementById('favDialog'); - - // Update button opens a modal dialog - updateButton.addEventListener('click', function() { - favDialog.showModal(); - }); - - // Form cancel button closes the dialog box - cancelButton.addEventListener('click', function() { - favDialog.close(); - }); -})(); -</pre> - -<h3 id="Hasil">Hasil</h3> - -<p>{{EmbedLiveSample("Contoh_lanjutan", "100%", 300)}}</p> - -<h2 id="Spesifikasi">Spesifikasi</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spesifikasi</th> - <th scope="col">Status</th> - <th scope="col">Keterangan</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('HTML WHATWG', 'forms.html#the-dialog-element', '<dialog>')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td> </td> - </tr> - <tr> - <td>{{SpecName('HTML5.2', 'interactive-elements.html#the-dialog-element', '<dialog>')}}</td> - <td>{{Spec2('HTML5.2')}}</td> - <td>Initial definition</td> - </tr> - </tbody> -</table> - -<h2 id="Kompatibilitas_browser">Kompatibilitas browser</h2> - -<div class="hidden"> -<p>Tabel kompatibilitas pada halaman ini dihasilkan dari struktur data.Jika ingin berkontribusi untuk data, silakan kunjungi <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> dan kirimkan kami <em>pull request</em>.</p> -</div> - -<p>{{Compat("html.elements.dialog")}}</p> - -<h2 id="Polyfills">Polyfills</h2> - -<p>Sertakan polyfill ini untuk menyediakan dukungan terhadap <em>browser</em> lawas</p> - -<p><a href="https://github.com/GoogleChrome/dialog-polyfill">dialog-polyfill</a></p> - -<h2 id="Lihat_juga">Lihat juga</h2> - -<ul> - <li>The {{event("close")}} event</li> - <li>The {{event("cancel")}} event</li> - <li><a href="/en-US/docs/Web/Guide/HTML/Forms">HTML forms guide</a>.</li> -</ul> - -<div>{{HTMLRef}}</div> diff --git a/files/id/web/html/element/image/index.html b/files/id/web/html/element/image/index.html deleted file mode 100644 index 047ac8f8b4..0000000000 --- a/files/id/web/html/element/image/index.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: <image> -slug: Web/HTML/Element/image -translation_of: Web/HTML/Element/image ---- -<div>{{non-standard_header}}</div> - -<h2 id="Ringkasan">Ringkasan</h2> - -<p>Elemen HTML <image> adalah elemen eksperimental yang dirancang untuk menampilkan gambar. Ini tidak pernah di implementasikan dan standar elemen {{HTMLElement ("img")}} harus digunakan.</p> - -<div class="note"> -<p><strong>Jangan Gunakan!<em> </em></strong>Untuk menampilkan gambar, gunakan standar elemen {{HTMLElement ("img")}} .</p> -</div> - -<p>Catatan sampai Firefox 22, meskipun tidak didukung, elemen <image> diasosiasikan dengan {{domxref ("HTMLSpanElement")}}. Kemudian diperbaiki dan sekarang diasosiasikan dengan {{domxref ("HTMLElement")}} mengikuti spesifikasi yang diminta.</p> diff --git a/files/id/web/html/element/index.html b/files/id/web/html/element/index.html deleted file mode 100644 index 6651addc38..0000000000 --- a/files/id/web/html/element/index.html +++ /dev/null @@ -1,106 +0,0 @@ ---- -title: HTML element reference -slug: Web/HTML/Element -tags: - - Elemen - - HTML - - Referensi - - Web - - dasar -translation_of: Web/HTML/Element ---- -<div>{{HTMLSidebar("Elements")}}</div> - -<p><span class="seoSummary">Halaman ini menampilkan semua daftar {{Glossary("HTML")}} {{Glossary("Element","elements")}}, yang dibuat menggunakan {{Glossary("Tag", "tags")}}.</span> Ini dikelompokkan berdasarkan fungsi untuk membantu Anda mengingat lebih mudah. Daftar abjad semua element tersedia di sidebar pada setiap halaman element seperti yang ini.</p> - -<div class="note"> -<p>Untuk informasi lebih tentang dasar-dasar element HTML dan attribut, lihat <a href="/id/docs/Web/Guide/HTML/Introduction#Elements_%E2%80%94_the_basic_building_blocks">artikel bagian pengenalan HTML</a>.</p> -</div> - -<h2 id="Akar_Utama">Akar Utama</h2> - -<p>{{HTMLRefTable("HTML Root Element")}}</p> - -<h2 id="Document_metadata">Document metadata</h2> - -<p>Metadata mengandung informasi halaman. Ini terdapat informasi tentang <em lang="en">styles, scripts</em> dan data untuk membantu perangkat lunak ({{Glossary("search engine", "search engines")}}, {{Glossary("Browser","browsers")}}, dsb.) gunakan dan alihkan halaman. Metadata untuk style dan script bisa didefinisikan di halaman atau link untuk berkas lainnya yabg memiliki informasinya.</p> - -<p>{{HTMLRefTable("HTML Document Metadata")}}</p> - -<h2 id="Bagian_Dasar">Bagian Dasar</h2> - -<p>{{HTMLRefTable("Sectioning Root Element")}}</p> - -<h2 id="Kontent_Bagian">Kontent Bagian</h2> - -<p>Element konten bagian memungkinkan Ansa mengatur konten dokumen menjadi kepingan-kepingan logis. Gunakan element bagian untuk membuat sebagian besar konten halaman Anda, termasuk navigasi header dan footer, dan judul element untuk mengidentifikasi bagian kontent.</p> - -<p>{{HTMLRefTable("HTML Sections")}}</p> - -<h2 id="Konten_kalimat">Konten kalimat</h2> - -<p>Kegunaan element teks konten HTML mengatur blok atau bagian konten yang ditempatkan antara tag pembuka {{HTMLElement("body")}} dan penutup <code></body></code> . Penting untuk {{Glossary("accessibility")}} and {{Glossary("SEO")}}, element-element ini mengenali tujuan atau struktur kontennya.</p> - -<p>{{HTMLRefTable("HTML Grouping Content")}}</p> - -<h2 id="Teks_semantik_dalam_baris">Teks semantik dalam baris</h2> - -<p>Kegunaan teks semantik dalam baris HTML untuk memberikan tujuan, struktur, atau gaya kata, baris, atau potongan kata sembarang.</p> - -<p>{{HTMLRefTable("HTML Text-Level Semantics")}}</p> - -<h2 id="Gambar_dan_multimedia">Gambar dan multimedia</h2> - -<p>HTML mendukung beragam sumber multimedia seperti gambar, audio, dan vidio.</p> - -<p>{{HTMLRefTable("multimedia")}}</p> - -<h2 id="Embedded_content">Embedded content</h2> - -<p>Selain konten multimedia biasa, HTML dapat menyertakan konten lainnya, walaupun tidak selalu mudah menyertakannya.</p> - -<p>{{HTMLRefTable({"include":["HTML embedded content"], "exclude":["multimedia"]})}}</p> - -<h2 id="Scripting">Scripting</h2> - -<p>Untuk membuat konten dinamis dan aplikasi web, HTML mendukung penggunaan bahasa skripsi, secara paling jelas JavaScript. Element tertentu mendukung kemampuan ini.</p> - -<p>{{HTMLRefTable("HTML Scripting")}}</p> - -<h2 id="Batas_Pengubahan">Batas Pengubahan</h2> - -<p>Element ini memungkinkan Anda menyediakan indikasi bagian spesifik bagian kalimat yang telah diubah.</p> - -<p>{{HTMLRefTable("HTML Edits")}}</p> - -<h2 id="Konten_tabel">Konten tabel</h2> - -<p>Element ini digunakan untuk membuat dan menangani data tabular.</p> - -<p>{{HTMLRefTable("HTML tabular data")}}</p> - -<h2 id="Formulir">Formulir</h2> - -<p>HTML menyediakan beberapa element yang dapat digunakan bersama untuk membuat formulir, dimana pengguna dapat mengisi dan memasukan ke situs web atau aplikasi. Terdapat banyak informasi ini tersedia di <a href="/en-US/docs/Web/Guide/HTML/Forms">panduan formulir HTML</a>.</p> - -<p>{{HTMLRefTable({"include": ["HTML forms"], "exclude":["Deprecated"]})}}</p> - -<h2 id="Element_interaktif">Element interaktif</h2> - -<p>HTML menawarkan pilihan element yang membantu untuk membuat pengguna interaktif berhadapan dengan objek.</p> - -<p>{{HTMLRefTable("HTML interactive elements")}}</p> - -<h2 id="Komponen_Web">Komponen Web</h2> - -<p>Komponen Web adalah teknologi HTML terhubung yang memungkinkan untuk, secara inti, membuat dan menggunakan element khusus seperti itu HTML umum. Selain itu, Anda dapat membuat versi khusus element HTML standar.</p> - -<p>{{HTMLRefTable({"include":["Web Components"],"elements":["shadow"]})}}</p> - -<h2 id="Element_Usang_dan_Dihilangkan">Element Usang dan Dihilangkan</h2> - -<div class="warning"> -<p><strong>Peringatan:</strong> Ini adalah element HTML lama yang dihilangkan dan seharusnya tidak digunakan. <strong>Anda harus tidak pernah menggunakannya pada proyek baru, dan harus mengubahnya pada proyek lama secepat yang Anda bisa.</strong> Berikut ini adalah daftarnya, hanya untuk informasi saja.</p> -</div> - -<p>{{HTMLRefTable({"include":["Deprecated","Obsolete"]})}}</p> |