summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/input-type-change-from-image-1.html
blob: 00747a5fbf69f64802a4a05680186d1bc0d9f894 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<link rel=match href="input-type-change-from-image-1-ref.html">
<input type="image" align="right">
<script>
  onload = function() {
    var i = document.querySelector("input");
    window.rect = i.getBoundingClientRect();
    i.type = "text";
  }
</script>