1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/275746-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +<!DOCTYPE html> 1.5 +<html><head><title>Testcase bug 275746 - Crash when clicking in drop down list, when changing from display:table-cell to display:inline</title> 1.6 +<style> 1.7 +span,select{display:table-cell;} 1.8 +</style> 1.9 +</head> 1.10 +<body onload="document.getElementById('x').style.display = 'inline'; document.documentElement.className = '';"> 1.11 +<span>This is needed</span><select id='x'><option>option 1</option><option>option 2</option></select> 1.12 +</body></html>