summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/replaced-elements/the-select-element/select-button-min-height-001.html
blob: c09910507690642cfaf41479503f7f0947359634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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:emilio@crisal.io">
<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>