chromium/third_party/blink/web_tests/external/wpt/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/input-type-change-from-image-1.html

<!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>