1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:17:35 +00:00

LibWeb: Add a simple DumpLayoutTree program

This loads a page and, dumps the layout tree to stdout, and exits.
This commit is contained in:
Andreas Kling 2020-12-08 23:34:55 +01:00
parent cf646badfa
commit f52ce49a36
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)
serenity_bin(DumpLayoutTree)
target_link_libraries(DumpLayoutTree LibWeb)