summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html')
-rw-r--r--testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html b/testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html
new file mode 100644
index 0000000000..9422c014ac
--- /dev/null
+++ b/testing/web-platform/tests/entries-api/filesystemdirectoryentry-attributes-manual.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Entries API: FileSystemDirectoryEntry attributes manual test</title>
+<link rel=help href="https://wicg.github.io/entries-api/#api-directoryentry">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="support.js"></script>
+
+<script>
+entry_test((t, entry) => {
+ assert_idl_attribute(entry, 'isFile', 'FileSystemDirectoryEntry has isFile attribute');
+ assert_equals(typeof entry.isFile, 'boolean', 'isFile is boolean');
+
+ assert_idl_attribute(entry, 'isDirectory', 'FileSystemDirectoryEntry has isDirectory attribute');
+ assert_equals(typeof entry.isDirectory, 'boolean', 'isDirectory is boolean');
+
+ assert_idl_attribute(entry, 'name', 'FileSystemDirectoryEntry has name attribute');
+ assert_equals(typeof entry.name, 'string', 'name is a string');
+
+ assert_idl_attribute(entry, 'fullPath', 'FileSystemDirectoryEntry has fullPath attribute');
+ assert_equals(typeof entry.fullPath, 'string', 'fullPath is a string');
+
+ assert_idl_attribute(entry, 'filesystem', 'FileSystemDirectoryEntry has filesystem attribute');
+ assert_equals(typeof entry.filesystem, 'object', 'filesystem is an object');
+
+ t.done();
+}, 'FileSystemDirectoryEntry - attribute types');
+
+entry_test((t, entry) => {
+ assert_false(entry.isFile, 'isFile is false');
+ assert_true(entry.isDirectory, 'isDirectory is true');
+ assert_equals(entry.name, 'upload', 'expected directory was uploaded');
+ assert_equals(entry.fullPath, '/upload', 'directory is child of root directory');
+ t.done();
+}, 'FileSystemDirectoryEntry - attribute values');
+
+</script>