-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsvelte-ignore07-input.svelte
44 lines (44 loc) · 1.26 KB
/
svelte-ignore07-input.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<div>
<!-- svelte-ignore a11y-label-has-associated-control a11y-no-noninteractive-tabindex -->
{#await Promise.resolve(42)}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{/await}
</div>
<div>
<!-- svelte-ignore a11y-label-has-associated-control a11y-no-noninteractive-tabindex -->
{#await Promise.resolve(42)}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{:then name}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{:catch name}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{/await}
</div>
<div>
<!-- svelte-ignore a11y-label-has-associated-control a11y-no-noninteractive-tabindex -->
{#await Promise.resolve(42)}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{:then name}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{/await}
</div>
<div>
<!-- svelte-ignore a11y-label-has-associated-control a11y-no-noninteractive-tabindex -->
{#await Promise.resolve(42) then n}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{/await}
</div>
<div>
<!-- svelte-ignore a11y-label-has-associated-control a11y-no-noninteractive-tabindex -->
{#await Promise.resolve(42) catch n}
<label tabindex="0">Click</label>
<ul tabindex="0" />
{/await}
</div>