diff options
author | MDN <actions@users.noreply.github.com> | 2021-09-16 00:51:24 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-09-16 00:51:24 +0000 |
commit | 49480fd1cc43cad88bea216b4508ca6f8a19f313 (patch) | |
tree | 42dedfeedfeb79d08912b974e6f3fa871b2a44d3 /files/ja/conflicting/web | |
parent | 5e48f8a9807acb369fa0228d16655fc044f4a17b (diff) | |
download | translated-content-49480fd1cc43cad88bea216b4508ca6f8a19f313.tar.gz translated-content-49480fd1cc43cad88bea216b4508ca6f8a19f313.tar.bz2 translated-content-49480fd1cc43cad88bea216b4508ca6f8a19f313.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting/web')
-rw-r--r-- | files/ja/conflicting/web/api/blob/size/index.html | 39 | ||||
-rw-r--r-- | files/ja/conflicting/web/api/file/name/index.html | 38 |
2 files changed, 77 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/blob/size/index.html b/files/ja/conflicting/web/api/blob/size/index.html new file mode 100644 index 0000000000..fc843a8033 --- /dev/null +++ b/files/ja/conflicting/web/api/blob/size/index.html @@ -0,0 +1,39 @@ +--- +title: File.fileSize +slug: conflicting/Web/API/Blob/size +tags: + - DOM + - File API + - Files + - Non-standard + - Obsolete + - Property + - Reference + - ファイル + - プロパティ +translation_of: Web/API/File/fileSize +original_slug: Web/API/File/fileSize +--- +<p>{{APIRef("File API") }}{{non-standard_header}}{{obsolete_header(7.0)}}</p> + +<p>ファイルオブジェクトの容量をバイト単位で返します。</p> + +<div class="note">このプロパティは非推奨です。代わりに {{domxref("File.size")}} を使用してください。</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="notranslate">var size = <em>instanceOfFile</em>.fileSize</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>数値</p> + +<h2 id="Specification" name="Specification">仕様策定状況</h2> + +<p>どの仕様書でも策定されていません。</p> + +<h2 id="See_also" name="See_also">あわせて参照</h2> + +<ul> + <li>{{domxref("Blob.size")}}</li> +</ul> diff --git a/files/ja/conflicting/web/api/file/name/index.html b/files/ja/conflicting/web/api/file/name/index.html new file mode 100644 index 0000000000..424b4b7685 --- /dev/null +++ b/files/ja/conflicting/web/api/file/name/index.html @@ -0,0 +1,38 @@ +--- +title: File.fileName +slug: conflicting/Web/API/File/name +tags: + - API + - DOM + - File API + - Files + - Non-standard + - Obsolete + - Property + - Reference +translation_of: Web/API/File/fileName +original_slug: Web/API/File/fileName +--- +<p>{{APIRef("File API")}}{{non-standard_header}}{{obsolete_header(7.0)}}</p> + +<p>ファイルの名前を返します。セキュリティ上の理由から、このプロパティからパスは除外されます。</p> + +<div class="note">このプロパティは非推奨です。代わりに {{domxref("File.name")}} を使用してください。</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="notranslate">var name = instanceOfFile.fileName</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>文字列</p> + +<h2 id="Specification" name="Specification">仕様策定状況</h2> + +<p>どの仕様書でも策定されていません。</p> + +<h2 id="See_also" name="See_also">あわせて参照</h2> + +<ul> + <li>{{domxref("File.name")}}</li> +</ul> |