1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00

LibWeb: Fix regression of "contenteditable" attribute

This commit is contained in:
TheFightingCatfish 2021-07-31 18:14:58 +08:00 committed by Andreas Kling
parent 95331ea864
commit 08359ba578
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;