Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / SelectorAPI / caseID-strict-expected.txt
blob611b8e72c41ceb101026d0c81c6421d8b7ef26ae
1 PASS document.querySelector('#lower1').textContent is 'lower 1'
2 PASS document.querySelector('#LOWER2') is null
3 PASS document.querySelector('#UPPER1').textContent is 'UPPER 1'
4 PASS document.querySelector('#upper2') is null
5 PASS document.getElementById('lower1').webkitMatchesSelector('#lower1') is true
6 PASS document.getElementById('lower2').webkitMatchesSelector('#LOWER2') is false
7 PASS document.getElementById('UPPER1').webkitMatchesSelector('#UPPER1') is true
8 PASS document.getElementById('UPPER2').webkitMatchesSelector('#upper2') is false
9 PASS successfullyParsed is true
11 TEST COMPLETE