An iframe is a document embedded inside another document. It has its own HTML,
its own DOM, its own rules. When you inspect the outer page, the iframe's content lives
in a separate tree.
Veyra placed a small document inside this page using an iframe with inline source code.
The outer page shows you a window; the inner page holds the token. You'll need to
inspect the iframe's own document to read what's inside.
// the nested document
> iframe srcdoc inline source
// the outer page cannot show you what's inside. look at the inner document.
// evidence log, enter the nested token
>
hint: inspect the iframe element, then drill into its #document. or right-click inside the iframe and "Inspect" the inner content. or select all text inside it.