Skip to content

Commit

Permalink
Add another test case
Browse files Browse the repository at this point in the history
  • Loading branch information
nsimonson committed Aug 29, 2020
1 parent 2ef0f71 commit 1a263b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<script>
import LabelComponent from './label.svelte'
</script>

<label>A</label>
<label for="id">B</label>

<label>C <input type="text" /></label>
<label>D <button>D</button></label>
<label>E <span></span></label>
<label>F {#if true}<input type="text" />{/if}</label>
<LabelComponent>G <input type="text" /></LabelComponent>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<label>
<slot />
</label>

0 comments on commit 1a263b3

Please sign in to comment.