1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:17:46 +00:00

LibWeb: Add Element.getAttribute() and Element.setAttribute() :^)

This commit is contained in:
Andreas Kling 2020-05-26 12:27:10 +02:00
parent b5788594f9
commit 8ff4ebb589
2 changed files with 49 additions and 0 deletions

View file

@ -47,6 +47,9 @@ private:
static JS::Value id_getter(JS::Interpreter&);
static void id_setter(JS::Interpreter&, JS::Value);
static JS::Value get_attribute(JS::Interpreter&);
static JS::Value set_attribute(JS::Interpreter&);
};
}