LibWebView: Move StylePropertiesModel to LibWebView

This patch has no functional changes.
This commit is contained in:
DexesTTP 2022-04-30 11:15:31 +02:00 committed by Andreas Kling
commit 962040b49c
Notes: sideshowbarker 2024-07-17 10:53:58 +09:00
5 changed files with 7 additions and 7 deletions

View file

@ -15,9 +15,9 @@
#include <LibGUI/TreeView.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/StylePropertiesModel.h>
#include <LibWebView/DOMTreeModel.h>
#include <LibWebView/OutOfProcessWebView.h>
#include <LibWebView/StylePropertiesModel.h>
namespace Browser {
@ -161,15 +161,15 @@ void InspectorWidget::set_dom_node_properties_json(Selection selection, String s
void InspectorWidget::load_style_json(String specified_values_json, String computed_values_json, String custom_properties_json)
{
m_selection_specified_values_json = specified_values_json;
m_computed_style_table_view->set_model(Web::StylePropertiesModel::create(m_selection_specified_values_json.value().view()));
m_computed_style_table_view->set_model(WebView::StylePropertiesModel::create(m_selection_specified_values_json.value().view()));
m_computed_style_table_view->set_searchable(true);
m_selection_computed_values_json = computed_values_json;
m_resolved_style_table_view->set_model(Web::StylePropertiesModel::create(m_selection_computed_values_json.value().view()));
m_resolved_style_table_view->set_model(WebView::StylePropertiesModel::create(m_selection_computed_values_json.value().view()));
m_resolved_style_table_view->set_searchable(true);
m_selection_custom_properties_json = custom_properties_json;
m_custom_properties_table_view->set_model(Web::StylePropertiesModel::create(m_selection_custom_properties_json.value().view()));
m_custom_properties_table_view->set_model(WebView::StylePropertiesModel::create(m_selection_custom_properties_json.value().view()));
m_custom_properties_table_view->set_searchable(true);
}