6 testRunner
.waitUntilDone();
7 setTimeout("test2()", 100);
10 document
.getElementById('sl').options
[0] = new Option ( "This text should fit in the list box", "1" );
11 if (window
.testRunner
)
12 testRunner
.notifyDone();
16 <body onload=
"test()">
17 This tests that when a list box's options get updated, the list box will recalculate its width, and relayout.
19 <select id=
"sl" multiple
></select>