This commit is contained in:
Adam D. Ruppe 2020-06-13 19:58:42 -04:00
parent 40c757b003
commit 3be163c44e
1 changed files with 20 additions and 7 deletions

27
dom.d
View File

@ -2225,15 +2225,19 @@ class Element {
return null; return null;
} }
/// Note: you can give multiple selectors, separated by commas. /++
/// It will return the first match it finds. Returns a child element that matches the given `selector`.
Note: you can give multiple selectors, separated by commas.
It will return the first match it finds.
+/
@scriptable @scriptable
Element querySelector(string selector) { Element querySelector(string selector) {
// FIXME: inefficient; it gets all results just to discard most of them Selector s = Selector(selector);
auto list = getElementsBySelector(selector); foreach(ele; tree)
if(list.length == 0) if(s.matchesElement(ele))
return null; return ele;
return list[0]; return null;
} }
/// a more standards-compliant alias for getElementsBySelector /// a more standards-compliant alias for getElementsBySelector
@ -8802,6 +8806,15 @@ unittest {
assert(doc.querySelectorAll(" > body").length == 1); // should mean the same thing assert(doc.querySelectorAll(" > body").length == 1); // should mean the same thing
assert(doc.root.querySelectorAll(" > body").length == 1); // the root of HTML has this assert(doc.root.querySelectorAll(" > body").length == 1); // the root of HTML has this
assert(doc.root.querySelectorAll(" > html").length == 0); // but not this assert(doc.root.querySelectorAll(" > html").length == 0); // but not this
// also confirming the querySelector works via the mdn definition
auto foo = doc.requireSelector("#foo");
assert(foo.querySelector("#foo > div") !is null);
assert(foo.querySelector("body #foo > div") !is null);
// this is SUPPOSED to work according to the spec but never has in dom.d since it limits the scope.
// the new css :scope thing is designed to bring this in. and meh idk if i even care.
//assert(foo.querySelectorAll("#foo > div").length == 2);
} }
unittest { unittest {