blob: 2a1a2c12901b423036664b5158d340639b836d91 [file] [log] [blame]
<!doctype HTML>
<style>
::-webkit-resizer {
background: red;
}
</style>
<textarea id="target" style="width: 200px; height: 200px;"></textarea>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
onload = function() {
requestAnimationFrame(function() {
target.style.width = "400px";
if (window.testRunner)
testRunner.notifyDone();
});
}
</script>