diff options
| author | Brian Cully <bjc@spork.org> | 2025-07-26 20:19:25 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-07-26 20:19:25 -0400 |
| commit | 2d12e407ccac850dd2e1ce133a2f335677a2ef29 (patch) | |
| tree | 385946aa84f5e6ed251bfd22c380574c9caa98bb /tests.html | |
| parent | c37f7d63ce3d67a22b0432c1085c080df4ffa819 (diff) | |
| download | chords-2d12e407ccac850dd2e1ce133a2f335677a2ef29.tar.gz chords-2d12e407ccac850dd2e1ce133a2f335677a2ef29.zip | |
whoops, missing files
Diffstat (limited to 'tests.html')
| -rw-r--r-- | tests.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests.html b/tests.html new file mode 100644 index 0000000..5aa6aed --- /dev/null +++ b/tests.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel='stylesheet' href='tests.css'> + <title>tests</title> + </head> + <body> + <x-string tonic='E' frets='3' value='x'> + <template> + <slot name='muted'></slot> + <slot name='fretlist'></slot> + <slot name='selected'></slot> + </template> + + <span slot='selected'>E</span> + + <form slot='fretlist'> + <ol class='fretlist'> + <li class='tonic'>E</li> + </ol> + </form> + + <input slot='muted' name='muted' type='checkbox'> + </x-string> + + <script type='module' src='tests.mjs'></script> + </body> +</html> |
