Revision 3a8328470d53c4501e31cec2775c4d33821c2275 authored by Robert Ma on 20 March 2018, 18:52:04 UTC, committed by Robert Ma on 20 March 2018, 20:32:14 UTC
* Renaming `check_stability.run` breaks commands.json and naming
  conventions, so rename the other `run` in that module instead.
* Only return errors for empty results when we know for sure tests are
  affected.
1 parent 7e214e8
Raw File
filesystemdirectoryentry-getParent-manual.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>Entries API: FileSystemDirectoryEntry getParent() 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, 'getParent', 'FileSystemDirectoryEntry has getParent');
  assert_equals(typeof entry.getParent, 'function', 'getParent() is a method');

  t.done();
}, 'FileSystemDirectoryEntry - getParent()');
</script>
back to top