summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text-overflow/combobox-zoom.html
blob: e45ed6d3fa7c84fafcc0aa14da2577b1e714046a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<!--
    Any copyright is dedicated to the Public Domain.
    http://creativecommons.org/licenses/publicdomain/
  -->
<html reftest-zoom="1.5">
<head>
<style>
@font-face {
  font-family: DejaVuSansMono;
  src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff);
}
html,body {
  color:black; background-color:white; padding:0; margin:0;
}
* {
  font-family:DejaVuSansMono!important;
  font-size:16px!important;
}
select {
  width: 200px;
  padding-right: 8px;
  text-overflow: " ";
  -moz-appearance: none;
}
</style>
</head>
<body>
<select></select><br>

<select><option>long string long string long string long string long string long string long string</option></select>

</body>
</html>