| OLD | NEW |
| (Empty) |
| 1 UI DELEGATE STATUS CALLBACK: setStatusText:set window.status | |
| 2 UI DELEGATE STATUS CALLBACK: setStatusText:set status | |
| 3 UI DELEGATE STATUS CALLBACK: setStatusText:1 | |
| 4 UI DELEGATE STATUS CALLBACK: setStatusText:2 | |
| 5 UI DELEGATE STATUS CALLBACK: setStatusText:object.toString | |
| 6 This tests that we can assign strings to the status property. | |
| 7 PASS: window.status = 'set window.status'; window.status should be 'set window.s
tatus' and is. | |
| 8 PASS: status = 'set status' should be 'set status' and is. | |
| 9 PASS: window.status = 1; window.status should be '1' and is. | |
| 10 PASS: status = 2; status should be '2' and is. | |
| 11 PASS: window.status={toString:function(){ return 'object.toString'; }}; window.s
tatus should be 'object.toString' and is. | |
| OLD | NEW |