Is there any workaround available? Should I delve into further debugging? I have verified with a very simple example (see below) that merely async-ly initializing my custom elements does not reproduce the problem. On the other hand, it's sort of bringing my work to a bit of a grinding halt at the moment.... Insights greatly appreciated, thank you!
<html>
<head>
<script src="../bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../bower_components/iron-icons/iron-icons.html">
</head>
<body>
<dom-module id="my-wrapper">
<template>
<iron-icon icon="arrow-back"></iron-icon>
</template>
</dom-module>
<my-wrapper></my-wrapper>
<script type="text/javascript">
"use strict";
window.setTimeout(function() {
Polymer({
is: 'my-wrapper',
});
}, 5000);
</script>
</body>
</html>
--
Ihab A.B. Awad, Palo Alto, CA