Bug 1935035 - Update a macOS-only test that hard-codes child count.
[gecko.git] / layout / reftests / forms / textarea / appearance-background-change.html
blobd1c7730513c0565898e3822a5ae26203bda6409d
1 <!doctype html>
2 <textarea>FOO BAR</textarea><br>
3 <input value="FOO BAR">
4 <script>
5 onload = function() {
6 for (let e of document.querySelectorAll("input, textarea")) {
7 e.getBoundingClientRect().top;
8 e.style.background = "transparent";
11 </script>