Skip to content

Commit 8139019

Browse files
authored
Actually run local storage test for Clear-Site-Data (web-platform-tests#27661)
1 parent d10551f commit 8139019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clear-site-data/support/test_utils.sub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var TestUtils = (function() {
2828
TestUtils.STORAGE = [
2929
{
3030
"name": "local storage",
31-
"supported": function() { !!window.localStorage; },
31+
"supported": function() { return !!window.localStorage; },
3232
"add": function() {
3333
return new Promise(function(resolve, reject) {
3434
localStorage.setItem(randomString(), randomString());

0 commit comments

Comments
 (0)