gecko/layout/reftests/bugs/345267-1b.html
L. David Baron 5859a14a99 Rename -moz-box-shadow to box-shadow: mechanical changes. (Bug 590039) r=bzbarsky a2.0=blocking2.0:beta6
Generated with:
find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
2010-09-11 09:27:12 -07:00

15 lines
300 B
HTML

<!DOCTYPE html>
<html>
<body>
<style>
/* Override the default :invalid style. */
:invalid { box-shadow: none; }
</style>
<input size="20" maxlength="2">
<script>
document.body.offsetWidth;
document.getElementsByTagName("input")[0].value = "abcde";
</script>
</body>
</html>