1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/370422-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<html> 1.5 +<head> 1.6 +<title>Testcase bug - Select drop down button doesn't update its position in this case when document widens</title> 1.7 +</head> 1.8 +<body onload="test()"> 1.9 +The dropwdown button should be on the right of the select<br> 1.10 + 1.11 +<iframe src="data:text/html;charset=utf-8,%3Chtml%3E%3Chead%3E%0A%3Cstyle%3E%0Aselect%0A%7B%0A%20%20HEIGHT%3A%20100px%3B%0A%20%20WIDTH%3A%20100%25%3B%20%0A%7D%0A%3C/style%3E%0A%3C/head%3E%0A%3Cbody%3E%0A%3Cselect%3E%3Coption%20value%3D%222%22%3Etext%3C/option%3E%3C/select%3E%20%20%20%20%20%20%20%20%0A%3C/body%3E%0A%3C/html%3E" style="width: 400px;"> 1.12 +</iframe> 1.13 +<script> 1.14 +function test() { 1.15 + document.getElementsByTagName('iframe')[0].style.width = '400px'; 1.16 +} 1.17 +</script> 1.18 +</body> 1.19 +</html>