HTMLCollectionElement.prototype.children
を返す必要があるシムをしようとしています
でも
var h = new HTMLCollection();
//TypeErrror: HTMLCollection is not a constructor
と
var h = Object.create(HTMLCollection.prototype);
h[0] = div;
h.item(0);
// Could not convert JavaScript argument
Firefox7とChromeをテストする
シミングとは別に、HTMLCollection
それと相互作用する方法はありますか?
解決策を提案できる場合は、このgithubの問題に関するフィードバックも提供してください