We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80f684b commit 27837f2Copy full SHA for 27837f2
examples/index.html
@@ -20,7 +20,7 @@
20
}
21
html = doc.innerHTML
22
} else if (url.pathname === '/marquee') {
23
- html = `<marquee>${url.searchParams.get('q') || 'blank'}</marquee>`
+ html = `<marquee>${url.searchParams.get('q') || '🐈 Nothing to preview 🐈'}</marquee>`
24
25
const promiseHTML = new Promise(resolve => resolve(html))
26
return new Promise(resolve => resolve({text: () => promiseHTML}))
@@ -30,7 +30,7 @@
30
</head>
31
<body>
32
<remote-input aria-owns="marquee-preview" src="/marquee">
33
- <label>Marquee preview <textarea autofocus>🐈🐈🐈🐈🐈</textarea></label>
+ <label>Marquee preview <textarea></textarea></label>
34
</remote-input>
35
<div id="marquee-preview"></div>
36
0 commit comments