Skip to content

Commit

Permalink
[Fix] avoid accessing window.applicationCache, to avoid issues with…
Browse files Browse the repository at this point in the history
… latest Chrome on HTTP

Fixes #46.
  • Loading branch information
ljharb committed Jun 18, 2018
1 parent ce1ecf2 commit f09421a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Expand Up @@ -22,6 +22,7 @@ var equalsConstructorPrototype = function (o) {
return ctor && ctor.prototype === o;
};
var excludedKeys = {
$applicationCache: true,
$console: true,
$external: true,
$frame: true,
Expand Down
1 change: 1 addition & 0 deletions test/shim.js
Expand Up @@ -206,6 +206,7 @@ test('shadowed properties', function (t) {
test('host objects on `window` constructor.prototype equal to themselves', { skip: typeof window === 'undefined' }, function (t) {
var keys, exception;
var excludedKeys = {
$applicationCache: true,
$console: true,
$external: true,
$frame: true,
Expand Down

0 comments on commit f09421a

Please sign in to comment.