<!DOCTYPE html> | |
<head> | |
<style> | |
#el0 { -webkit-appearance: none; } | |
.c0 { display: run-in; } | |
</style> | |
</head> | |
<body><input type=text id=el0> | |
<script> | |
if (window.testRunner) | |
testRunner.dumpAsText(); | |
document.body.appendChild(el0); | |
document.body.appendChild(document.createElement('div')); | |
document.body.offsetTop; | |
el0.classList.add('c0'); | |
document.body.offsetTop; | |
document.body.innerHTML = 'PASS if not crashed'; | |
</script> | |
</body> |