mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:47:35 +00:00

When selecting an element in the browser's DOM inspector, we now also show the resolved CSS properties (and their values) for that element. Since the inspector was growing a bit more complex, I moved it out of the "show inspector" action callback and into its own class. In the future, we will probably want to migrate the inspector down to LibHTML to make it accessible to other clients of the library, but for now we can keep working on it inside Browser. :^)
17 lines
479 B
Makefile
Executable file
17 lines
479 B
Makefile
Executable file
OBJS = \
|
|
main.o \
|
|
InspectorWidget.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = GUI HTML Draw IPC Protocol Core
|
|
|
|
main.cpp: ../../Libraries/LibHTML/CSS/PropertyID.h
|
|
../../Libraries/LibHTML/CSS/PropertyID.h:
|
|
@flock ../../Libraries/LibHTML $(MAKE) -C ../../Libraries/LibHTML
|
|
|
|
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
|
|
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:
|
|
@flock ../../Servers/ProtocolServer $(MAKE) -C $(dir $(@))
|
|
|
|
include ../../Makefile.common
|