webcomponents-lite.js を使用するように移行しようとしていますが、それを加硫するときに問題があります。私はそれを次のように煮詰めました:
<!doctype html>
<html>
<head>
<script src='bower_components/webcomponentsjs/webcomponents-lite.js'></script>
<link rel='import' href='bower_components/paper-input/paper-input.html'>
</head>
<body>
<paper-input></paper-input>
</body>
加硫後に IE で動作しないもの
切り替えたら
<script src='bower_components/webcomponentsjs/webcomponents.js'></script>
できます
バージョン 1.14.0 で --inline-scripts --inline-css を実行しています
関数のポリマー部分(と思います)で失敗します
removeAttribute: function (name) {
this.node.removeAttribute(name);
this._distributeParent();
},
with: オブジェクトはプロパティまたはメソッド 'removeAttribute' をサポートしていません
このやや単純な例では、何か間違ったことをしているに違いありませんが、それは何ですか?
liteがポリフィルしないものはありますか?
どうもありがとう
乾杯