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:
parent
10e5458e27
commit
3a7fb6cf9e
2 changed files with 18 additions and 18 deletions
|
@ -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 {};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue