Skip to content

Commit

Permalink
FSA: Re-enable manual WPTs
Browse files Browse the repository at this point in the history
The check for frame_ was accidentally flipped in this refactor:
2827c754150c3591e1ea1d9bbc3db947fbbcfef5.

A lot of the WPTs this bug was causing to fail are still failing because
they haven't been run in a long time. These will be fixed in follow up
CLs.

Bug: 346991169
Change-Id: I865e379f2048ecfaf044dd9467c53af2ef381b07
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5837824
Reviewed-by: Christine Hollingsworth <[email protected]>
Reviewed-by: danakj <[email protected]>
Commit-Queue: Nathan Memmott <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1355953}
  • Loading branch information
Nathan Memmott authored and chromium-wpt-export-bot committed Sep 16, 2024
1 parent 7c98dbd commit 0c5ea44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fs/script-tests/FileSystemBaseHandle-IndexedDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ directory_test(async (t, root_dir) => {
}, 'Store handle in IndexedDB using inline keys.');

directory_test(async (t, root_dir) => {
const expected_root_name = '';
assert_equals(root_dir.name, expected_root_name);
const expected_root_name = root_dir.name;

const db = await createDatabase(t, db => {
const store = db.createObjectStore('store', {keyPath: 'key'});
Expand Down

0 comments on commit 0c5ea44

Please sign in to comment.