Bug 1935035 - Update a macOS-only test that hard-codes child count.
[gecko.git] / layout / reftests / forms / placeholder / placeholder-7.html
blob19fc8eb745c2ee6c337afd1dafb73c15615bedf0
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
4 <!-- Test: when focused, element should show placeholder. -->
5 <script type="text/javascript">
6 function focusPlaceholder()
8 document.getElementById('p1').focus();
10 function disableReftestWait()
12 document.documentElement.className = '';
14 </script>
16 <body onload="focusPlaceholder();">
17 <input type="text" id="p1" value="" placeholder="my placeholder" onfocus="disableReftestWait();">
18 </body>
19 </html>