PolymerElements / test-fixture

21 stars 14 forks source link

Safari: dom-repeat template inside test-fixture gets no content #7

Closed atotic closed 8 years ago

atotic commented 9 years ago

I've just created a pull request with a test case that demonstrates the issue. This causes iron-selector tests to fail.

<test-fixture id="NestedRepeatFixture">
  <template>
    <template id="repeater" is="dom-repeat">
      <div>{{item}}</div>
    </template>
  </template>
</test-fixture>

repeater.content will be null on Safari after fixture.create()

notwaldorf commented 8 years ago

This is caused by https://github.com/webcomponents/webcomponentsjs/issues/362. Will be resolved when that's fixed.