aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-16 16:27:00 -0400
committerGitHub <noreply@github.com>2021-07-17 04:27:00 +0800
commitb9afb23d12dcae1e09f8d04c72143c5ddaa34aea (patch)
treef6c20844119bcaf0131ad4a037e0245577927f2c /files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖
parent1aa671566c3a990ec2df9a46137471d624b6f7ff (diff)
downloadtranslated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.gz
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.bz2
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.zip
delete conflicting/orphaned docs (zh-CN) (#1412)
* delete conflicting docs (zh-CN) * and redirects * do orphaned as well * fix * remove more orphans * revert orphaned docs that can identify origin * move orphaned docs to current loc * adjust slug path * fix redirect change from rebase Co-authored-by: Irvin <irvinfly@gmail.com>
Diffstat (limited to 'files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖')
-rw-r--r--files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖/index.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖/index.html b/files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖/index.html
deleted file mode 100644
index 7033c46107..0000000000
--- a/files/zh-cn/orphaned/web/api/navigatorplugins/测试滕盖/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
----
-title: 测试滕盖
-slug: orphaned/Web/API/NavigatorPlugins/测试滕盖
-original_slug: Web/API/NavigatorPlugins/测试滕盖
----
-<div>{{ ApiRef("HTML DOM") }}</div>
-
-<div> </div>
-
-<h2 id="Summary" name="Summary">Summary</h2>
-
-<p>Returns a {{domxref("MimeTypeArray")}} object, which contains a list of {{domxref("MimeType")}} objects representing the MIME types recognized by the browser.</p>
-
-<h2 id="Syntax" name="Syntax">Syntax</h2>
-
-<pre class="syntaxbox"><var>mimeTypes</var> = navigator.mimeTypes;
-</pre>
-
-<p><code>mimeTypes</code> is a <code>MimeTypeArray</code> object which has a <code>length</code> property as well as <code>item(index)</code> and <code>namedItem(name)</code> methods.</p>
-
-<h2 id="Example" name="Example">Example</h2>
-
-<pre class="brush:js">function isJavaPresent() {
- return 'application/x-java-applet' in navigator.mimeTypes;
-}
-
-function getJavaPluginDescription() {
- var mimetype = navigator.mimeTypes['application/x-java-applet'];
- if (mimetype === undefined) {
- // no Java plugin present
- return undefined;
- }
- return mimetype.enabledPlugin.description;
-}
-</pre>
-
-<h2 id="Specification" name="Specification">Specification</h2>
-
-<p><em>This is not part of any specification.</em></p>