Commit f2e50eed authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Allow typeof(localStorage) to be unknown.

Fixes tests on some win10 versions. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 8979458f
......@@ -398,7 +398,7 @@ sync_test("stylesheets", function() {
sync_test("storage", function() {
ok(typeof(window.sessionStorage) === "object",
"typeof(window.sessionStorage) = " + typeof(window.sessionStorage));
ok(typeof(window.localStorage) === "object",
ok(typeof(window.localStorage) === "object" || typeof(window.localStorage) === "unknown",
"typeof(window.localStorage) = " + typeof(window.localStorage));
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment