| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <script> |
| description( |
| "This tests that querySelector, querySelectorAll and matchesSelector (webkitMatchesSelector) don't crash when used in a viewless document." |
| ); |
| |
| var testDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html"); |
| testDoc.documentElement.appendChild(testDoc.createElement("body")); |
| testDoc.body.appendChild(testDoc.createElement("p")).id = "p1"; |
| testDoc.getElementById("p1").appendChild(testDoc.createElement("span")).id = "s1"; |
| testDoc.body.appendChild(testDoc.createElement("span")).id = "s2"; |
| testDoc.body.appendChild(testDoc.createElement("div")).className = "d1"; |
| |
| var p1 = testDoc.getElementById("p1"); |
| var s1 = testDoc.getElementById("s1"); |
| var s2 = testDoc.getElementById("s2"); |
| var d1 = testDoc.body.lastChild; |
| |
| shouldBe("testDoc.querySelector('p')", "p1"); |
| shouldBe("testDoc.querySelectorAll('span').length", "2"); |
| shouldBe("testDoc.querySelectorAll('span').item(1)", "s2"); |
| shouldBe("testDoc.querySelector('.d1')", "d1"); |
| shouldBe("testDoc.querySelectorAll('p span').length", "1"); |
| |
| shouldBeTrue("p1.matches('p')"); |
| shouldBeTrue("s1.matches('p span')"); |
| shouldBeTrue("s2.matches('#s2')"); |
| shouldBeTrue("d1.matches('.d1')"); |
| shouldBeTrue("p1.webkitMatchesSelector('p')"); |
| shouldBeTrue("s1.webkitMatchesSelector('p span')"); |
| shouldBeTrue("s2.webkitMatchesSelector('#s2')"); |
| shouldBeTrue("d1.webkitMatchesSelector('.d1')"); |
| </script> |
| <script src="../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |