@@ -325,9 +325,9 @@ To <dfn for="file system locator" id=locator-resolve>resolve</dfn> a
325
325
The <dfn export data-lt="locating an entry">locate an entry</dfn> algorithm given a
326
326
[=/file system locator=] |locator| runs the following steps:
327
327
328
- 1. Let |file system | be |locator|'s [=file system locator/file system=] .
328
+ 1. Let |fileSystem | be |locator|'s [=file system locator/file system=] .
329
329
1. Let |path| be |locator|'s [=file system locator/path=] .
330
- 1. Let |entry| be the result of running |file system |'s
330
+ 1. Let |entry| be the result of running |fileSystem |'s
331
331
[=file system/locate an entry=] given |path|.
332
332
1. If |entry| is null, return null.
333
333
1. If |locator| is a [=file locator=] , [=Assert=] : |entry| is a [=file entry=] .
@@ -340,11 +340,11 @@ The <dfn export data-lt="locating an entry">locate an entry</dfn> algorithm give
340
340
The <dfn export data-lt="getting the locator">get the locator</dfn> algorithm given a
341
341
[=/file system entry=] |entry| runs the following steps:
342
342
343
- 1. Let |file system | be |entry|'s [=file system entry/file system=] .
344
- 1. Let |path| be the result of running |file system |'s
343
+ 1. Let |fileSystem | be |entry|'s [=file system entry/file system=] .
344
+ 1. Let |path| be the result of running |fileSystem |'s
345
345
[=file system/get the path=] given |entry|.
346
346
1. Let |locator| be a [=file system locator=] whose [=file system locator/path=]
347
- is |path| and whose [=file system locator/file system=] is |file system |.
347
+ is |path| and whose [=file system locator/file system=] is |fileSystem |.
348
348
1. If |entry| is a [=file entry=] , set |locator|'s [=file system locator/kind=] to "file".
349
349
1. If |entry| is a [=directory entry=] , set |locator|'s [=file system locator/kind=] to "directory".
350
350
1. Return |entry|.
@@ -495,13 +495,13 @@ given a [=directory locator=] |parentLocator| and a string |name| in a [=/Realm=
495
495
<div algorithm>
496
496
To
497
497
<dfn export data-lt="creating a new FileSystemFileHandle">create a new `FileSystemFileHandle`</dfn>
498
- given a [=/file system=] |file system | and a [=/file system path=] |path|
498
+ given a [=/file system=] |fileSystem | and a [=/file system path=] |path|
499
499
in a [=/Realm=] |realm|:
500
500
501
501
1. Let |handle| be a [=new=] {{FileSystemFileHandle}} in |realm|.
502
502
1. Set |handle|'s [=FileSystemHandle/locator=] to a [=/file system locator=] whose
503
503
[=file system locator/kind=] is "{{FileSystemHandleKind/file}} ",
504
- [=file system locator/file system=] is |file system |, and
504
+ [=file system locator/file system=] is |fileSystem |, and
505
505
[=file system locator/path=] is |path|.
506
506
1. Return |handle|.
507
507
@@ -750,13 +750,13 @@ given a [=directory locator=] |parentLocator| and a string |name| in a [=/Realm=
750
750
<div algorithm>
751
751
To
752
752
<dfn export data-lt="creating a new FileSystemDirectoryHandle">create a new `FileSystemDirectoryHandle`</dfn>
753
- given a [=/file system=] |file system | and a [=/file system path=] |path|
753
+ given a [=/file system=] |fileSystem | and a [=/file system path=] |path|
754
754
in a [=/Realm=] |realm|:
755
755
756
756
1. Let |handle| be a [=new=] {{FileSystemDirectoryHandle}} in |realm|.
757
757
1. Set |handle|'s [=FileSystemHandle/locator=] to a [=/file system locator=] whose
758
758
[=file system locator/kind=] is "{{FileSystemHandleKind/directory}} ",
759
- [=file system locator/file system=] is |file system |, and
759
+ [=file system locator/file system=] is |fileSystem |, and
760
760
[=file system locator/path=] is |path|.
761
761
1. Return |handle|.
762
762
@@ -1764,10 +1764,10 @@ The <dfn method for=StorageManager>getDirectory()</dfn> method steps are:
1764
1764
1. Set |dir|'s [=directory entry/children=] to an empty [=/set=] .
1765
1765
1. Set |map|["root"] to |dir|.
1766
1766
1767
- 1. Let |file system | be [=/bucket file system=] 's [=file system/root=] .
1767
+ 1. Let |fileSystem | be [=/bucket file system=] 's [=file system/root=] .
1768
1768
1. Let |path| be « the empty string ».
1769
1769
1. Let |handle| be the result of <a>creating a new `FileSystemDirectoryHandle`</a> .
1770
- given |file system | and |path| in the [=current realm=] .
1770
+ given |fileSystem | and |path| in the [=current realm=] .
1771
1771
1772
1772
1. Assert: [=locating an entry=] given |handle|'s [=FileSystemHandle/locator=]
1773
1773
returns a [=directory entry=] that is [=the same entry as=] |map|["root"] .
0 commit comments