blob: 1187fb9493e5b007daad4d344cb9fdd445576c4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<script src="resources/autosizingTest.js"></script>
</head>
<body>
This test passes if it does not crash.<br/>
<input type="text"></input>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
setTimeout(function() {
document.getElementsByTagName('input')[0].value = 'test';
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>
</body>
</html>
|