OLD | NEW |
(Empty) | |
| 1 Test for crbug.com/304069: querySelectorAll regression. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 PASS document.body.querySelectorAll('#target > div').length is 6 |
| 7 PASS document.body.querySelectorAll('#target').length is 0 |
| 8 PASS document.body.querySelectorAll('.target > div').length is 6 |
| 9 PASS document.body.querySelectorAll('.target').length is 0 |
| 10 PASS document.body.querySelectorAll('body > div').length is 6 |
| 11 PASS document.body.querySelectorAll('body').length is 0 |
| 12 PASS document.body.querySelector('#target') is null |
| 13 PASS document.body.querySelector('.target') is null |
| 14 PASS document.body.querySelector('body') is null |
| 15 PASS successfullyParsed is true |
| 16 |
| 17 TEST COMPLETE |
| 18 |
OLD | NEW |