<html> | |
<head> | |
<title>inline body causes crash with custom scrollbar</title> | |
<style> | |
::-webkit-scrollbar { width: 5px; height: 5px; } | |
</style> | |
<script> | |
if (window.testRunner) | |
testRunner.dumpAsText(); | |
</script> | |
</head> | |
<body style="overflow: scroll; display: inline;"> | |
<div style="width: 5000px; height: 5000px;">No crash means PASS</div> | |
</body> | |
</html> |