Skip to content

Commit

Permalink
Untabify slots-fallback-in-document.html. (#5749)
Browse files Browse the repository at this point in the history
Tabs sneaked in in the last commit.
  • Loading branch information
Takayoshi Kochi committed May 2, 2017
1 parent 809ef9b commit bcaecba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shadow-dom/slots-fallback-in-document.html
Expand Up @@ -23,7 +23,7 @@
test(() => {
assert_array_equals(n1.innerSlot.assignedNodes(), [n1.slot]);
assert_array_equals(n1.innerSlot.assignedNodes({ flatten: true }),
[n1.fallback]);
[n1.fallback]);
}, 'Slot fallback content in document tree should be counted in flattened ' +
'assigned nodes.');
</script>
Expand All @@ -32,10 +32,10 @@
<div id="host">
<template data-mode="open">
<div id="innerHost">
<template data-mode="open">
<slot id="innerSlot"></slot>
</template>
<slot id="slot"><div id="fallback">This is fallback content</div></slot>
<template data-mode="open">
<slot id="innerSlot"></slot>
</template>
<slot id="slot"><div id="fallback">This is fallback content</div></slot>
</div>
</template>
</div>
Expand All @@ -50,7 +50,7 @@
test(() => {
assert_array_equals(n2.innerSlot.assignedNodes(), [n2.slot]);
assert_array_equals(n2.innerSlot.assignedNodes({ flatten: true }),
[n2.fallback]);
[n2.fallback]);
}, 'Slot fallback content in shadow tree should be counted in flattened ' +
'assigned nodes.');
</script>

0 comments on commit bcaecba

Please sign in to comment.