summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/entries-api/filesystemfileentry-getParent-manual.html
blob: fea77348a6dec9c4b9ca3b09360ac3b97b9f7bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset=utf-8>
<title>Entries API: FileSystemFileEntry getParent() manual test</title>
<link rel=help href="https://wicg.github.io/entries-api/#api-entry">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support.js"></script>

<script>

file_entry_test('file.txt', (t, entry) => {
  assert_idl_attribute(entry, 'getParent', 'FileSystemFileEntry has a getParent method');
  assert_equals(typeof entry.getParent, 'function', 'FileSystemFileEntry has a getParent() method');
  t.done();
}, 'FileSystemFileEntry - getParent() method');

</script>