- ##browsers: 6 data cols with Mode Badge (#headless=#f59e0b, visible=#22c55e); actions as inline button list
- ##tabs: 5 data cols with Type Badge + Attached Badge; actions as inline button list
- ##wsframes: 4 cols with Dir Badge (send=#3b82f6, recv=#22c55e) + Op Badge (text/binary/close/ping/pong)
- ##requests: 7 cols with Status Badge (2xx/3xx/4xx/5xx), Method Badge (GET/POST/PUT/DELETE/PATCH), Time Duration renderer; Waterfall col omitted (requires custom ImDrawList, not a Fase-1 renderer)
- CMakeLists.txt: add fn_table_viz linkage (guarded by TARGET check for lua-absent builds)
- app.md: add 12 uses_functions IDs for fn_table_viz stack
- fn doctor cpp-apps: navegator_dashboard now OK (0 inline BeginTable remaining)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Bug reportado: tabla Network vacia. Causa real: sin actividad de red en la
pestaña no hay eventos Network.* — la tabla solo se llena cuando el browser
realmente hace peticiones. Faltaba un boton para forzar Page.reload desde la
UI y un overview visual de actividad.
NetworkSession::reload_page(ignore_cache) — envia Page.reload por la WS CDP
activa. Equivalente a F5 / Ctrl+Shift+R.
NetworkSession::ws_frames_in/bytes_in/bytes_out — accessors a stats del CDP
WebSocket subyacente, expuestos para diagnostico vivo.
Network panel toolbar:
- Boton "Reload" (TI_REFRESH) — invoca reload_page().
- Checkbox "Bypass cache" — controla el flag ignoreCache.
- Toggle "Histogram" (TI_CHART_HISTOGRAM) — muestra/oculta overview.
Histograma overview (ImPlot::PlotHistogram):
- Eje X: tiempo de inicio (s) desde apertura de la sesion.
- Eje Y: requests por bin (30 bins por defecto, AutoFit).
- Marcadores TagX: DOMContentLoaded (DCL) y Load (L) tomados de Page.* events.
- Altura fija 100px, sin titulo/menu/box-select.
Status bar:
- Reemplaza placeholder "WS bytes 0/0" por estado real:
- "CDP: alive" en verde si frames_in>0, "CDP: no events" en warning si 0.
- Cuenta de frames + bytes in/out humanizados.
Util para diagnosticar: si "CDP: alive" pero tabla vacia → eventos llegan
pero no estan disparando peticiones nuevas → dale a Reload. Si "no events"
→ WS rota o pestaña no enganchada — investigar la conexion.
Tests: 6/6 siguen pasando (no se tocan los hooks de layouts).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>