summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/number/appearance-textfield-dynamic.html
blob: 813add54e4287aeb7ce863f8f7ab0852d3a18716 (plain)
1
2
3
4
5
6
7
<!doctype html>
<input type=number>
<script>
  let input = document.querySelector("input");
  input.getBoundingClientRect();
  input.style.appearance = "textfield";
</script>