diff options
Diffstat (limited to 'layout/reftests/forms/select/vertical-centering-ref.html')
-rw-r--r-- | layout/reftests/forms/select/vertical-centering-ref.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/forms/select/vertical-centering-ref.html b/layout/reftests/forms/select/vertical-centering-ref.html new file mode 100644 index 0000000000..82bbb7d3d0 --- /dev/null +++ b/layout/reftests/forms/select/vertical-centering-ref.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<style> + @font-face { + font-family: "Ahem"; + src: url(../../fonts/Ahem.ttf); + } + select { + -moz-appearance: none; + border: none; + font: 20px/1 Ahem; + box-sizing: content-box; + /* The testcase has 20px-tall text, which should be centered in a 40px-tall + content-box (with 10px of extra space above and below). We emulate that + by having explicit 10px of padding on top and bottom. */ + padding: 10px 0 10px 0; + } +</style> +<select> + <option>X</option> +</select> |