mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 01:59:31 +00:00
LibWeb: Implement Node.cloneNode()
With this we can now successfully run a Vue.js 2 hello world! :^)
This commit is contained in:
parent
d721c93beb
commit
5da4c9bf1e
Notes:
sideshowbarker
2024-07-18 20:24:17 +09:00
Author: https://github.com/linusg
Commit: 5da4c9bf1e
Pull-request: https://github.com/SerenityOS/serenity/pull/6304
4 changed files with 71 additions and 1 deletions
|
@ -35,7 +35,7 @@ class ProcessingInstruction final : public CharacterData {
|
|||
public:
|
||||
using WrapperType = Bindings::ProcessingInstructionWrapper;
|
||||
|
||||
ProcessingInstruction(Document&, const String&, const String&);
|
||||
ProcessingInstruction(Document&, const String& data, const String& target);
|
||||
virtual ~ProcessingInstruction() override;
|
||||
|
||||
virtual FlyString node_name() const override { return m_target; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue