haikuwebkit/LayoutTests/fast/dom/SelectorAPI/attrname-case-sensitive-exp...

27 lines
1.5 KiB
Plaintext

PASS document.querySelector('div[baR]') is document.getElementById('bar')
PASS document.getElementById('bar').matches('div[baR]') is true
PASS document.getElementById('bar').webkitMatchesSelector('div[baR]') is true
PASS content.querySelector('div[bar]') is null
PASS content.querySelector('div[BAR]') is null
PASS content.querySelector('div[bAR]') is null
PASS document.querySelector('div[baR="10"]') is document.getElementById('bar')
PASS document.getElementById('bar').matches('div[baR="10"]') is true
PASS document.getElementById('bar').webkitMatchesSelector('div[baR="10"]') is true
PASS content.querySelector('div[bar="10"]') is null
PASS content.querySelector('div[BAR="10"]') is null
PASS content.querySelector('div[bAR="10"]') is null
PASS document.querySelector('path[pathLength]') is document.getElementById('pa')
PASS document.getElementById('pa').matches('path[pathLength]') is true
PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength]') is true
PASS content.querySelector('path[pathlength]') is null
PASS content.querySelector('path[pathLengTh]') is null
PASS document.querySelector('path[pathLength="200"]') is document.getElementById('pa')
PASS document.getElementById('pa').matches('path[pathLength="200"]') is true
PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength="200"]') is true
PASS content.querySelector('path[pathlength="200"]') is null
PASS content.querySelector('path[pathLengTh="200"]') is null
PASS successfullyParsed is true
TEST COMPLETE