Skip to content

Commit d646146

Browse files
[fs] Update QuotaExceededError usage whatwg/fs@da67dd7
1 parent ff9f6e4 commit d646146

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

fs-ja.html

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@
112112
●●options
113113

114114
spec_title:File System
115-
spec_date:2025-08-12
116-
trans_update:2025-07-25
115+
spec_date:2025-09-15
116+
trans_update:2025-09-25
117117
source_checked:230621
118118
spec_status:LS
119119
original_url:https://fs.spec.whatwg.org/
@@ -178,11 +178,11 @@
178178
E.NotAllowedError:~WEBIDL#notallowederror
179179
E.NotFoundError:~WEBIDL#notfounderror
180180
E.NoModificationAllowedError:~WEBIDL#nomodificationallowederror
181-
E.QuotaExceededError:~WEBIDL#quotaexceedederror
182181
E.SecurityError:~WEBIDL#securityerror
183182
E.TypeError:~WEBIDL#exceptiondef-typeerror
184183
E.TypeMismatchError:~WEBIDL#typemismatcherror
185184

185+
I.QuotaExceededError:~WEBIDL#quotaexceedederror
186186
I.BufferSource:~WEBIDL#BufferSource
187187
I.AllowSharedBufferSource:~WEBIDL#AllowSharedBufferSource
188188
I.Blob:~FILEAPI#blob
@@ -360,7 +360,6 @@
360360
~NEQ ε:~INFRA#map-exists
361361
:~INFRA#map-exists
362362

363-
364363
~promiseを却下する:~WEBIDLjs#reject
365364
~promiseを解決する:~WEBIDLjs#resolve
366365
~IDL値に変換する:~WEBIDLjs#dfn-convert-javascript-to-idl-value
@@ -753,7 +752,7 @@
753752
<a href="https://whatwg.org/chat">Chat on Matrix</a>
754753
Commits:
755754
https://github.com/whatwg/fs/commits
756-
<a href="https://fs.spec.whatwg.org/commit-snapshots/28a834274cb170efb0aa680e172d002d20a0eb87/" id="commit-snapshot-link">Snapshot as of this commit</a>
755+
<a href="https://fs.spec.whatwg.org/commit-snapshots/145b4885b95ad0ea12aaef93cbaf2eaa0ec85d48/" id="commit-snapshot-link">Snapshot as of this commit</a>
757756
<a href="https://twitter.com/whatfilesystem">@whatfilesystem</a>
758757
Tests:
759758
<a href="https://github.com/web-platform-tests/wpt/tree/master/fs">web-platform-tests fs/</a> (<a href="https://github.com/web-platform-tests/wpt/labels/fs">ongoing work</a>)
@@ -4482,11 +4481,11 @@ <h3 title="The FileSystemWritableFileStream interface">2.5. `FileSystemWritableF
44824481
`~storage~quota$を超過することに因り失敗した
44834482
44844483
⇒#
4485-
`~promiseを却下する$( %~promise, `QuotaExceededError$E 例外 );
4484+
`~promiseを却下する$( %~promise, `QuotaExceededError$I 例外 );
44864485
~RET( %~stream の `buffer$sl は改変されない。)
44874486
44884487
If the operations modifying stream’s [[buffer]] in the previous steps failed due to exceeding the storage quota,\
4489-
reject p with a "QuotaExceededError" DOMException and\
4488+
reject p with a QuotaExceededError and\
44904489
abort these steps, leaving stream’s [[buffer]] unmodified.
44914490
</p>
44924491

@@ -4599,11 +4598,11 @@ <h3 title="The FileSystemWritableFileStream interface">2.5. `FileSystemWritableF
45994598
`~storage~quota$を超過することに因り失敗した
46004599
46014600
⇒#
4602-
`~promiseを却下する$( %~promise, `QuotaExceededError$E 例外 );
4601+
`~promiseを却下する$( %~promise, `QuotaExceededError$I 例外 );
46034602
~RET( %~stream の `buffer$sl は改変されない。)
46044603
46054604
If the operation in the previous step failed due to exceeding the storage quota,\
4606-
reject p with a "QuotaExceededError" DOMException and\
4605+
reject p with a QuotaExceededError and\
46074606
abort these steps, leaving stream’s [[buffer]] unmodified.
46084607
</p>
46094608

@@ -5336,9 +5335,9 @@ <h4 title="The write() method">`write()^m ~method</h4>
53365335
個の~byteを追加すると可用な`~storage~quota$を超過する
53375336
53385337
5339-
~THROW `QuotaExceededError$E
5338+
~THROW `QuotaExceededError$I
53405339
5341-
If newSize − oldSize exceeds the available storage quota, throw a "QuotaExceededError" DOMException.
5340+
If newSize − oldSize exceeds the available storage quota, throw a QuotaExceededError.
53425341
</li>
53435342
<li>
53445343
<p>
@@ -5490,10 +5489,10 @@ <h4 title="The truncate() method">`truncate()^m ~method</h4>
54905489
( %newSize ~MINUS %旧-~size ) 個の~byteを追加すると可用な`~storage~quota$を超過する
54915490
54925491
5493-
~THROW `QuotaExceededError$E
5492+
~THROW `QuotaExceededError$I
54945493
54955494
If newSize is larger than oldSize:
5496-
• If newSize − oldSize exceeds the available storage quota, throw a "QuotaExceededError" DOMException.
5495+
• If newSize − oldSize exceeds the available storage quota, throw a QuotaExceededError.
54975496
</li>
54985497
<li>
54995498
<p>

0 commit comments

Comments
 (0)