chromium/third_party/blink/web_tests/external/wpt/html/rendering/replaced-elements/the-select-element/select-button-min-height-001.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>min-height and height both trigger same rendering for select and buttons by default</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1362907">
<link rel="match" href="select-button-min-height-001-ref.html">
<style>
  select, input, button { min-height: 100px; }
</style>
<div>
  <select><option>Select</option></select>
  <button>Button</button>
  <input type="button" value="Input">
</div>