OLD | NEW |
1 This page tests getting and setting window properties and functions. | 1 This page tests getting and setting window properties and functions. |
2 | 2 |
3 | 3 |
4 ----- tests for getting/setting read-write properties ----- | 4 ----- tests for getting/setting read-write properties ----- |
5 | 5 |
6 PASS: canGet('Attr') should be 'true' and is. | 6 PASS: canGet('Attr') should be 'true' and is. |
7 PASS: canSet('Attr') should be 'true' and is. | 7 PASS: canSet('Attr') should be 'true' and is. |
8 PASS: canGet('CDATASection') should be 'true' and is. | 8 PASS: canGet('CDATASection') should be 'true' and is. |
9 PASS: canSet('CDATASection') should be 'true' and is. | 9 PASS: canSet('CDATASection') should be 'true' and is. |
10 PASS: canGet('CSSPrimitiveValue') should be 'true' and is. | 10 PASS: canGet('CSSPrimitiveValue') should be 'true' and is. |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 PASS: canGet('document') should be 'true' and is. | 259 PASS: canGet('document') should be 'true' and is. |
260 PASS: canSet('document') should be 'false' and is. | 260 PASS: canSet('document') should be 'false' and is. |
261 PASS: canGet('history') should be 'true' and is. | 261 PASS: canGet('history') should be 'true' and is. |
262 PASS: canSet('history') should be 'false' and is. | 262 PASS: canSet('history') should be 'false' and is. |
263 PASS: canGet('navigator') should be 'true' and is. | 263 PASS: canGet('navigator') should be 'true' and is. |
264 PASS: canSet('navigator') should be 'false' and is. | 264 PASS: canSet('navigator') should be 'false' and is. |
265 PASS: canGet('pageXOffset') should be 'true' and is. | 265 PASS: canGet('pageXOffset') should be 'true' and is. |
266 PASS: canSet('pageXOffset') should be 'false' and is. | 266 PASS: canSet('pageXOffset') should be 'false' and is. |
267 PASS: canGet('pageYOffset') should be 'true' and is. | 267 PASS: canGet('pageYOffset') should be 'true' and is. |
268 PASS: canSet('pageYOffset') should be 'false' and is. | 268 PASS: canSet('pageYOffset') should be 'false' and is. |
| 269 PASS: canGet('screen') should be 'true' and is. |
| 270 PASS: canSet('screen') should be 'false' and is. |
269 PASS: canGet('window') should be 'true' and is. | 271 PASS: canGet('window') should be 'true' and is. |
270 PASS: canSet('window') should be 'false' and is. | 272 PASS: canSet('window') should be 'false' and is. |
271 PASS: canGet('top') should be 'true' and is. | 273 PASS: canGet('top') should be 'true' and is. |
272 PASS: canSet('top') should be 'false' and is. | 274 PASS: canSet('top') should be 'false' and is. |
273 | 275 |
274 ----- tests for getting/setting string properties ----- | 276 ----- tests for getting/setting string properties ----- |
275 | 277 |
276 PASS: canGet('defaultStatus') should be 'true' and is. | 278 PASS: canGet('defaultStatus') should be 'true' and is. |
277 PASS: canSetWithTypeConversion('defaultStatus') should be 'true' and is. | 279 PASS: canSetWithTypeConversion('defaultStatus') should be 'true' and is. |
278 PASS: canGet('defaultstatus') should be 'true' and is. | 280 PASS: canGet('defaultstatus') should be 'true' and is. |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 PASS: canSetWithCallable('onscroll') should be 'true' and is. | 379 PASS: canSetWithCallable('onscroll') should be 'true' and is. |
378 PASS: canGet('onsearch') should be 'true' and is. | 380 PASS: canGet('onsearch') should be 'true' and is. |
379 PASS: canSetWithCallable('onsearch') should be 'true' and is. | 381 PASS: canSetWithCallable('onsearch') should be 'true' and is. |
380 PASS: canGet('onselect') should be 'true' and is. | 382 PASS: canGet('onselect') should be 'true' and is. |
381 PASS: canSetWithCallable('onselect') should be 'true' and is. | 383 PASS: canSetWithCallable('onselect') should be 'true' and is. |
382 PASS: canGet('onsubmit') should be 'true' and is. | 384 PASS: canGet('onsubmit') should be 'true' and is. |
383 PASS: canSetWithCallable('onsubmit') should be 'true' and is. | 385 PASS: canSetWithCallable('onsubmit') should be 'true' and is. |
384 PASS: canGet('onunload') should be 'true' and is. | 386 PASS: canGet('onunload') should be 'true' and is. |
385 PASS: canSetWithCallable('onunload') should be 'true' and is. | 387 PASS: canSetWithCallable('onunload') should be 'true' and is. |
386 | 388 |
OLD | NEW |