Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / selectors / querySelector-leftmost-selector-matches-rootNode-expected.txt
blob5d49575191025dad97915e2dcba9bc435614e1c3
1 Test for crbug.com/304069: querySelectorAll regression.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
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
17 TEST COMPLETE