mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
LibWeb: Add naive support for document.querySelectorAll()
This currently returns a JS::Array of elements matching a selector. The more correct behavior would be to return a static NodeList, but as we don't have NodeLists right now, that'll be a task for the future.
This commit is contained in:
parent
c56acba75e
commit
0f7bcd4111
Notes:
sideshowbarker
2024-07-19 08:03:42 +09:00
Author: https://github.com/awesomekling
Commit: 0f7bcd4111
11 changed files with 182 additions and 78 deletions
|
@ -35,11 +35,15 @@ class Event;
|
|||
class EventListener;
|
||||
class EventTarget;
|
||||
class Frame;
|
||||
class HTMLElement;
|
||||
class HTMLCanvasElement;
|
||||
class HTMLElement;
|
||||
class HtmlView;
|
||||
class LayoutNode;
|
||||
class MouseEvent;
|
||||
class Node;
|
||||
class Selector;
|
||||
class StyleRule;
|
||||
class StyleSheet;
|
||||
|
||||
namespace Bindings {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue