<template is="dom-bind">
内<test-fixture>
でweb-components-testerを使用するにはどうすればよいですか?
私はそれをPolymer 0.8の方法で使用しようとしましたx-template
:
<test-fixture id="dom-bind-fixture">
<template is="dom-bind">
<h1>{{greeting}}</h2>
</template>
</test-fixture>
<script>
// ...
var bound = fixture('dom-bind-fixture', {greeting: 'ohai thurr'});
</script>
dom-bind
メソッドがないため、当然失敗しますstamp
。
次に、ネイティブ<template>
要素からスタンプしてみました:
<test-fixture id="dom-bind-fixture">
<template>
<h1>outside dom-bind</h1>
<template is="dom-bind">
<h2>inside dom-bind</h2>
</template>
</template>
</test-fixture>
ただし、Chrome 以外のブラウザでは、これはoutside dom-bind
.
それを機能させる方法はありますか、それとも web-components-tester/test-fixture/dom-bind のブロック バグですか?