← product evidence + the ladder to state of the art
Nishi browser — the paint-cliff and big-page fixes (eaglercraft + full Wikipedia now load)
workstream: S21 experiential / S18 graphics — browser chrome-parity ratchetrun: browser-perf-2026-07-162026-07-16
Verdict: Two hard blockers eaten — and one honest limit made visible. (1) PAINT CLIFF: the Eaglercraft page went from >170s (killed, never finished) to 2s — root cause was every CSS lookup scanning the whole computed-decl array per box per ancestor (O(boxes x ancestors x ncomp)); fixed with a per-box decl index, proven a PURE accelerator by a gate (same answers on every box x 4 resolvers, buckets bounded). (2) BIG-PAGE FETCH: the full Wikipedia /wiki/Computer article returned ZERO bytes (the fetch response buffer capped at 512KB, the page is ~1MB); raised to 4MB across the fetch/dechunk/charset/GUI buffers — it now fetches 966,758 bytes and renders a 27,465px page in 3s. THE HONEST LIMIT: Eaglercraft is a 100 percent JS/WASM app, so with the hang gone the Nishi browser paints its background and NOTHING ELSE (the launcher you see in Chrome is drawn entirely by scripts the Nishi engine does not execute yet). So this run proves the paint cliff is dead (by TIMING + a gate), not that we render the launcher. The real VISUAL proof of the paint fix is the Wikipedia render below.


Measured
| what | result | meaning |
|---|---|---|
| Eaglercraft paint time | >170s (killed) -> 2s | Per-box computed-decl index (br_cidx): CSS lookups scan only that box's bucket, not the whole array |
| Index correctness | nx_cidx_equiv_gate GREEN | 300 boxes x 4 resolvers (bg/border/color/font-size): bucketed answer == full-scan answer, 0 divergences; can-fail control confirms buckets are genuinely bounded (max 9 vs ncomp 667) |
| Wikipedia /Computer fetch | 0 bytes -> 966,758 bytes | Response/dechunk/charset/GUI buffers 512KB/1MB/2MB -> 4MB uniformly |
| Wikipedia /Computer render | 27,465px page in 3s | The largest real page the engine has laid out; no hang, no truncation |
| Regression check | 203KB baseline page unchanged (203,464 bytes); bg-cascade + fontsize-frac + inline-vec-measure gates all GREEN | The buffer + index changes are additive; every prior gate re-run passed |
| honest gap | Eaglercraft game UI (JS/WASM) not executed | Static-shell paint only; JS execution is a separate, larger arc (the engine has a JS VM but the browser does not yet run page scripts in the shot lane) |
Machine detail: api.json · related: /evidence/nishi-browser