mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
dom: remove useless error union on document.getElementsBy*
This commit is contained in:
@@ -50,12 +50,12 @@ pub const Document = struct {
|
|||||||
// the spec changed to return an HTMLCollection instead.
|
// the spec changed to return an HTMLCollection instead.
|
||||||
// That's why we reimplemented getElementsByTagName by using an
|
// That's why we reimplemented getElementsByTagName by using an
|
||||||
// HTMLCollection in zig here.
|
// HTMLCollection in zig here.
|
||||||
pub fn _getElementsByTagName(self: *parser.Document, tag_name: []const u8) !collection.HTMLCollection {
|
pub fn _getElementsByTagName(self: *parser.Document, tag_name: []const u8) collection.HTMLCollection {
|
||||||
const root = parser.documentGetDocumentElement(self);
|
const root = parser.documentGetDocumentElement(self);
|
||||||
return collection.HTMLCollectionByTagName(parser.elementToNode(root), tag_name);
|
return collection.HTMLCollectionByTagName(parser.elementToNode(root), tag_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn _getElementsByClassName(self: *parser.Document, classNames: []const u8) !collection.HTMLCollection {
|
pub fn _getElementsByClassName(self: *parser.Document, classNames: []const u8) collection.HTMLCollection {
|
||||||
const root = parser.documentGetDocumentElement(self);
|
const root = parser.documentGetDocumentElement(self);
|
||||||
return collection.HTMLCollectionByClassName(parser.elementToNode(root), classNames);
|
return collection.HTMLCollectionByClassName(parser.elementToNode(root), classNames);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user