mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
LibWeb: Implement EmbedderPolicy struct
This commit is contained in:
parent
f073f8301c
commit
190a419715
Notes:
sideshowbarker
2024-07-17 11:29:41 +09:00
Author: https://github.com/jamierocks
Commit: 190a419715
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/515
Reviewed-by: https://github.com/awesomekling
8 changed files with 89 additions and 2 deletions
35
Userland/Libraries/LibWeb/HTML/EmbedderPolicy.cpp
Normal file
35
Userland/Libraries/LibWeb/HTML/EmbedderPolicy.cpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/HTML/EmbedderPolicy.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
StringView embedder_policy_value_to_string(EmbedderPolicyValue embedder_policy_value)
|
||||
{
|
||||
switch (embedder_policy_value) {
|
||||
case EmbedderPolicyValue::UnsafeNone:
|
||||
return "unsafe-none"sv;
|
||||
case EmbedderPolicyValue::RequireCorp:
|
||||
return "require-corp"sv;
|
||||
case EmbedderPolicyValue::Credentialless:
|
||||
return "credentialless"sv;
|
||||
}
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
Optional<EmbedderPolicyValue> embedder_policy_value_from_string(StringView string)
|
||||
{
|
||||
if (string.equals_ignoring_ascii_case("unsafe-none"sv))
|
||||
return EmbedderPolicyValue::UnsafeNone;
|
||||
if (string.equals_ignoring_ascii_case("require-corp"sv))
|
||||
return EmbedderPolicyValue::RequireCorp;
|
||||
if (string.equals_ignoring_ascii_case("credentialless"sv))
|
||||
return EmbedderPolicyValue::Credentialless;
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue