gecko/layout/reftests/native-theme/box-shadow-styling.html
Robert O'Callahan 160bdca11d Bug 476062. Instead of turning off -moz-appearance when an element has a box-shadow, just ignore the box-shadow. r+sr=dbaron
--HG--
extra : rebase_source : 68e79ec44afd089b93870a5d87ea549d5f04b9d6
2009-04-01 14:07:18 +13:00

26 lines
762 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style>
input, button, select, div {
-moz-box-shadow: 10px 10px gold, 10px 1000px blue;
}
</style>
</head>
<body>
<p><div style="-moz-appearance:button; width:100px; height:20px;"></div>
<p><input>
<p><input type=submit value=submit>
<p><input type=text value=text >
<p><input type=password value=password>
<p><input type=reset value=reset>
<p><input type=button value=button>
<p><button> &lt;button> </button>
<p><button type=button> &lt;button type=button> </button>
<p><button type=submit> &lt;button type=submit> </button>
<p><button type=reset> &lt;button type=reset> </button>
<p><select size="3"><option>a</option><option>b</option></select>
<p><select size="1"><option>a</option><option>b</option></select>
</body>
</html>