Browse Source

Catch error when the creation of localStorage polyfill fails in the generic viewer

Jonas Jenwald 11 years ago
parent
commit
8bb19fac2d
  1. 25
      web/compatibility.js

25
web/compatibility.js

@ -547,13 +547,20 @@ if (typeof PDFJS === 'undefined') {
return; return;
} }
} catch (e) { } } catch (e) { }
window.localStorage = { // When the generic viewer is used in Firefox the following code will fail
data: Object.create(null), // when the preference 'network.cookie.lifetimePolicy' is set to 1,
getItem: function (key) { // see Mozilla bug 365772.
return this.data[key]; try {
}, window.localStorage = {
setItem: function (key, value) { data: Object.create(null),
this.data[key] = value; getItem: function (key) {
} return this.data[key];
}; },
setItem: function (key, value) {
this.data[key] = value;
}
};
} catch (e) {
console.log('Unable to create polyfill for localStorage');
}
})(); })();

Loading…
Cancel
Save