1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/385681.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +<html><head> 1.5 +<title></title> 1.6 +<style> 1.7 +a { 1.8 + font-variant: small-caps; 1.9 +} 1.10 +a:hover { 1.11 + color: red; 1.12 +} 1.13 +</style> 1.14 +</head> 1.15 +<body> 1.16 +<a href="#">home</a><br> 1.17 +<a href="#">login</a><br> 1.18 +<a href="#">signup</a><br> 1.19 + 1.20 +<script> 1.21 +function doe(i) { 1.22 +if (!i) { 1.23 + document.links[1].style.color='red'; 1.24 + document.links[0].offsetHeight; 1.25 + document.links[0].style.color = 'red'; 1.26 + } 1.27 +else { 1.28 + document.links[1].style.color='blue'; 1.29 + document.links[0].style.color = 'blue'; 1.30 + } 1.31 +setTimeout(doe, 100, !i); 1.32 +} 1.33 +setTimeout(doe, 500, true); 1.34 +</script> 1.35 +</body> 1.36 + 1.37 +</html> 1.38 \ No newline at end of file