tenfourfox/layout/reftests/bugs/346774-1b.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
364 B
HTML

<!DOCTYPE html>
<html>
<body>
<form name="theForm">
<select name="theSelect" style="width: auto">
<option>xxxxxxxxxx</option>
</select>
</form>
<script>
// Flush reflow
document.body.offsetWidth;
document.theForm.theSelect.style.width='2em';
document.body.offsetWidth;
document.theForm.theSelect.style.width='auto';
</script>
</body>
</html>