I'm seeing an assertion failed error in my app in line 118 of 
webcomponent.js:

    window.ShadowDOMPolyfill = {};
    (function(scope) {
        "use strict";
        var constructorTable = new WeakMap();
        var nativePrototypeTable = new WeakMap();
        var wrappers = Object.create(null);
        function detectEval() {
            if (typeof chrome !== "undefined" && chrome.app && 
chrome.app.runtime) {
                return false;
            }
            if (navigator.getDeviceStorage) {
                return false;
            }
            try {
                var f = new Function("return true;");
                return f();
            } catch (ex) {
                return false;
            }
        }
        var hasEval = detectEval();
        function assert(b) {
            if (!b) 
*                throw new Error("Assertion failed");*
        }

This only shows up in Safari, and not Chrome. Any ideas?

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/ba360a58-93e4-4b0a-ae90-886a97afb11e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to