blob: 69c7687ba50c0b546233ba51b0495085d6ad8466 [file] [log] [blame]
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<div style="display: none">
<span id="lower1">lower</span><br>
<P id="UPPER1">UPPER</P><br>
</div>
<script>
shouldBe("document.querySelector('div SPAN').textContent", "'lower'");
shouldBe("document.querySelector('div p').textContent", "'UPPER'");
shouldBeTrue("document.getElementById('lower1').webkitMatchesSelector('div SPAN')");
shouldBeTrue("document.getElementById('UPPER1').webkitMatchesSelector('div p')");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>