Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

"SCRIPT16389: Unspecified error" from AngularJs in IE if no browser history #10367

Closed
andrewljones opened this issue Dec 8, 2014 · 4 comments

Comments

@andrewljones
Copy link

Angular version: 1.3.4
Browser version: Internet Explorer 10

In IE10 (may also occur in other versions of IE as well but haven't got easy access to other versions to test) then if a web application using AngularJs is the very first page loaded in the browser the following JavaScript error may occur:

SCRIPT16389: Unspecified error.
angular.js, line 4116 character 11

This is coming from the call to factory() in the following:

    function getService(serviceName) {
      if (cache.hasOwnProperty(serviceName)) {
        if (cache[serviceName] === INSTANTIATING) {
          throw $injectorMinErr('cdep', 'Circular dependency found: {0}',
                    serviceName + ' <- ' + path.join(' <- '));
        }
        return cache[serviceName];
      } else {
        try {
          path.unshift(serviceName);
          cache[serviceName] = INSTANTIATING;
          return cache[serviceName] = factory(serviceName);
        } catch (err) {
          if (cache[serviceName] === INSTANTIATING) {
            delete cache[serviceName];
          }
          throw err;
        } finally {
          path.shift();
        }
      }
    }

After further investigation I've found that this appears to be originating from the "cachedState = window.history.state;" statement in the following function.

  function cacheState() {
    // This should be the only place in $browser where `history.state` is read.
    cachedState = window.history.state;
    cachedState = isUndefined(cachedState) ? null : cachedState;

    // Prevent callbacks fo fire twice if both hashchange & popstate were fired.
    if (equals(cachedState, lastCachedState)) {
      cachedState = lastCachedState;
    }
    lastCachedState = cachedState;
  }

This error does not occur if any other page has been visited prior to going to the page that uses AngularJs as window.history.state then no longer returns an error in IE.

Note that this error does not appear to occur when using Firefox or Chrome (as neither of these browsers raise an error when accessing window.history.state).

A try catch block on the window.history.state should fix this:

  function cacheState() {
      // This should be the only place in $browser where `history.state` is read.
    try {
        cachedState = window.history.state;
    }
    catch (e) {
        cachedState = null;
    }
    cachedState = isUndefined(cachedState) ? null : cachedState;

    // Prevent callbacks fo fire twice if both hashchange & popstate were fired.
    if (equals(cachedState, lastCachedState)) {
      cachedState = lastCachedState;
    }
    lastCachedState = cachedState;
  }
@caitp
Copy link
Contributor

caitp commented Dec 8, 2014

Goshdarnit. I really need more IE devs to CC on these bugs to get some clarity on these issues.

Unfortunately, this is difficult to write a test case for, even using the new e2e harness.

@caitp caitp added this to the 1.3.7 milestone Dec 8, 2014
caitp added a commit to caitp/angular.js that referenced this issue Dec 8, 2014
Reportedly, MSIE can throw under certain conditions when fetching this attribute.

Will confirm before landing.

Fixes angular#10367
@caitp caitp modified the milestones: 1.3.7, 1.3.8 Dec 9, 2014
@btford btford modified the milestones: 1.3.8, 1.3.9 Dec 19, 2014
@petebacondarwin
Copy link
Contributor

I have a Win8/IE11 machine so I can take a look....

caitp added a commit that referenced this issue Mar 2, 2015
Reportedly, MSIE can throw under certain conditions when fetching this attribute.
We don't have a reliable reproduction for this but it doesn't do any real harm
to wrap access to this variable in a try-catch block.

Fixes #10367
Closes #10369
@caitp caitp closed this as completed in 3b8163b Mar 2, 2015
hansmaad pushed a commit to hansmaad/angular.js that referenced this issue Mar 10, 2015
Reportedly, MSIE can throw under certain conditions when fetching this attribute.
We don't have a reliable reproduction for this but it doesn't do any real harm
to wrap access to this variable in a try-catch block.

Fixes angular#10367
Closes angular#10369
@christianarg
Copy link

Any ETA on versión 1.3.15 where this fix is made? We are holding a new release of our product because this exact problem. It's likely hard to reproduce, but when it happens it makes the application unusable.

@petebacondarwin
Copy link
Contributor

We hope to do a release of 1.3.15 in the next day or two

netman92 pushed a commit to netman92/angular.js that referenced this issue Aug 8, 2015
Reportedly, MSIE can throw under certain conditions when fetching this attribute.
We don't have a reliable reproduction for this but it doesn't do any real harm
to wrap access to this variable in a try-catch block.

Fixes angular#10367
Closes angular#10369
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants