no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / selection / 1478604.html
blob5d17e5fd7b32cdcd12af580bc4b807798578b8c6
1 <!doctype html>
2 <html class="reftest-wait">
3 <style>
4 input {
5 border: 0;
7 </style>
8 <label id="fooLabel" for="foo">Foo label</label>
9 <input id="foo" type="text" value="foo" >
10 <label id="barLabel" for="bar">Bar label</label>
11 <input id="bar" type="text" value="bar">
12 <script>
13 onload = function() {
14 fooLabel.click();
15 requestAnimationFrame(() => {
16 barLabel.click();
17 requestAnimationFrame(() => {
18 document.documentElement.className = "";
19 });
20 });
22 </script>
23 </html>