1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 23:22:07 +00:00

LibWeb: Port CrossOriginPropertyDescriptorMap from ByteString

This commit is contained in:
Shannon Booth 2023-12-24 15:53:30 +13:00 committed by Andreas Kling
parent 10e5458e27
commit 3a7fb6cf9e
2 changed files with 18 additions and 18 deletions

View file

@ -6,9 +6,9 @@
#pragma once
#include <AK/ByteString.h>
#include <AK/Forward.h>
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Traits.h>
#include <LibJS/Forward.h>
#include <LibJS/Runtime/PropertyKey.h>
@ -16,7 +16,7 @@
namespace Web::HTML {
struct CrossOriginProperty {
ByteString property;
String property;
Optional<bool> needs_get {};
Optional<bool> needs_set {};
};