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