mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00

This commit includes only fetching the DOM tree from the WebContent process and displaying it in an NSOutlineView. The displayed tree includes some basic styling (e.g. colors).
17 lines
256 B
Objective-C
17 lines
256 B
Objective-C
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <System/Cocoa.h>
|
|
|
|
@class Tab;
|
|
|
|
@interface InspectorController : NSWindowController
|
|
|
|
- (instancetype)init:(Tab*)tab;
|
|
|
|
@end
|