LibWeb: Fix regression of "contenteditable" attribute

This commit is contained in:
TheFightingCatfish 2021-07-31 18:14:58 +08:00 committed by Andreas Kling
commit 08359ba578
Notes: sideshowbarker 2024-07-18 07:40:57 +09:00
3 changed files with 5 additions and 5 deletions

View file

@ -40,9 +40,9 @@ public:
struct Attribute {
String prefix;
String local_name;
String local_name { "" };
String namespace_;
String value;
String value { "" };
Position name_start_position;
Position value_start_position;
Position name_end_position;