blob: 1dfa3e2b8114b5f28860443789937178b2d4db9e [file] [log] [blame]
<!DOCTYPE html>
<script src='resources/shadow-dom.js'></script>
<div id='host'>
<template data-mode='open'>
<slot name='slot1'>
<div>fallback1</div>
</slot>
<slot name='slot2'>
<div>fallback2</div>
</slot>
</template>
<div slot='slot1'>child1</div>
</div>
<script>
convertTemplatesToShadowRootsWithin(host);
</script>