mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
33249c727a
This now allows you to view the computed and resolved style values, along with the CSS variables of a node.
19 lines
296 B
C++
19 lines
296 B
C++
/*
|
|
* Copyright (c) 2022, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
|
|
namespace Ladybird {
|
|
|
|
struct DOMNodeProperties {
|
|
String computed_style_json;
|
|
String resolved_style_json;
|
|
String custom_properties_json;
|
|
};
|
|
|
|
}
|