Sample
golang.org/x/net v0.24.0: html.ErrorNode
Verified sample for golang golang.org/x/net v0.24.0: html.ErrorNode. The contract ran on go 1.26 · linux debian/x64 · docker and passed: html.ErrorNode is a…
sha256:1a9c85ecaf0daaa14cb2fb3e4282ada5245b2a89a77637f2b1e9d6a3437cf8bc
This network offers one thing: a sample that builds. It ran the sample in a sandbox and kept the signed receipt. It grades nothing and warrants nothing — whether the same code builds where you are is not something it measured.
How many distinct signing keys filed a passing contract receipt. One is the author alone; more than one means somebody else built it too. A key is self-generated with nothing registered behind it, so it counts keys, not people.
MIT-0
Execution evidence
The declared environment and the signed runs are kept apart, so you can see exactly what this sample ran and where.
- Evidence basis
- Signed contract pass
- Verification receipts
- 1
- Signing keys that built it
- 1
Declared environment
go 1.26 linux 24 · ubuntu · glibc 2.39 x64 go 1.26 go go 1
Verification-run environments
| Environment | Contract | Stages | Run |
|---|---|---|---|
| go 1.26 · linux debian/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1golang:1.26@sha256:e30143be198a… |
2026-09-05 |
Case
HOW- Goal
- verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0
- Packages
- Symbols
-
- golang.org/x/net/html.ErrorNode
- Environment
- go 1.26.6
- Created
- 2026-09-05T03:32:57Z
Contract
- html.ErrorNode is a NodeType constant equal to uint32(0)
- uninitialized html.Node struct has Type equal to html.ErrorNode by default
- explicitly created html.Node with html.ErrorNode retains its Type and error Data
- html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode
- html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode
Files
- PROMPT.md
- csx.json
- go.mod
- go.sum
- main.go
- spec.json
- test/contract.go
Source
Clean-room public code sample — generation instructions
Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.
A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.
Goal: verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:golang/golang.org/x/net@v0.24.0
Demonstrate these symbols/APIs:
- golang.org/x/net/html.ErrorNode
Required runtime conditions:
- ecosystem: golang
- language: go
- packageManager: go@1.26.6
- runtime: go@1.26.6
Rules:
- One focused purpose; the smallest project that proves the goal.
- Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
- Pin every dependency with a lockfile so resolution is reproducible.
- No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
- No personal names, emails, company names, or project identifiers of any kind.
- No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
- Keep it under 200 files and 256KB packed.
{"case":{"caseId":"case:sha256:1b6aa870d3580004ca9169aa5fbc77cdbcef7471d71cf3d17968699fed095424","contract":["html.ErrorNode is a NodeType constant equal to uint32(0)","uninitialized html.Node struct has Type equal to html.ErrorNode by default","explicitly created html.Node with html.ErrorNode retains its Type and error Data","html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode","html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode"],"goal":"verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0","kind":"HOW","packages":["pkg:golang/golang.org/x/net@v0.24.0"],"schemaVersion":1,"symbols":["golang.org/x/net/html.ErrorNode"]},"contractCommand":["go","run","./test"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","language":"go","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","packageManagerVersion":"1.26.6","runtime":"go","runtimeVersion":"1.26.6","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/golang.org/x/net@v0.24.0"],"schemaVersion":1,"subject":"pkg:golang/golang.org/x/net@v0.24.0","symbols":["golang.org/x/net/html.ErrorNode"],"verifierAdapter":"golang@1"}
module sample
go 1.24.0
require golang.org/x/net v0.24.0
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
package main
import (
"fmt"
"strings"
"golang.org/x/net/html"
)
// IsErrorNode checks if an html.Node has NodeType ErrorNode.
func IsErrorNode(n *html.Node) bool {
return n != nil && n.Type == html.ErrorNode
}
// FindErrorNodes recursively scans an HTML node tree and returns any ErrorNodes found.
func FindErrorNodes(n *html.Node) []*html.Node {
var errNodes []*html.Node
if n == nil {
return errNodes
}
if n.Type == html.ErrorNode {
errNodes = append(errNodes, n)
}
for c := n.FirstChild; c != nil; c = c.NextSibling {
errNodes = append(errNodes, FindErrorNodes(c)...)
}
return errNodes
}
// NodeTypeName returns the human-readable string representation of an html.NodeType.
func NodeTypeName(t html.NodeType) string {
switch t {
case html.ErrorNode:
return "ErrorNode"
case html.TextNode:
return "TextNode"
case html.DocumentNode:
return "DocumentNode"
case html.ElementNode:
return "ElementNode"
case html.CommentNode:
return "CommentNode"
case html.DoctypeNode:
return "DoctypeNode"
case html.RawNode:
return "RawNode"
default:
return "UnknownNode"
}
}
func main() {
var defaultNode html.Node
fmt.Printf("Default node type is %s (is ErrorNode: %t)\n",
NodeTypeName(defaultNode.Type), IsErrorNode(&defaultNode))
errNode := &html.Node{
Type: html.ErrorNode,
Data: "parse error: unclosed tag",
}
fmt.Printf("Created ErrorNode with error details: %q\n", errNode.Data)
doc, err := html.Parse(strings.NewReader("<p>Hello World</p>"))
if err != nil {
panic(err)
}
foundErrors := FindErrorNodes(doc)
fmt.Printf("ErrorNodes in valid parsed document: %d\n", len(foundErrors))
}
{
"schemaVersion": 1,
"goal": "verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0",
"kind": "HOW",
"packages": [
"pkg:golang/golang.org/x/net@v0.24.0"
],
"symbols": [
"golang.org/x/net/html.ErrorNode"
],
"runtimeConditions": {
"ecosystem": "golang",
"language": "go",
"packageManager": "go@1.26.6",
"runtime": "go@1.26.6"
}
}
package main
import (
"fmt"
"os"
"strings"
"golang.org/x/net/html"
)
func main() {
// 1. html.ErrorNode is a NodeType constant equal to uint32(0)
{
if html.ErrorNode != 0 {
fmt.Fprintf(os.Stderr, "FAIL: expected html.ErrorNode to be 0, got %d\n", html.ErrorNode)
os.Exit(1)
}
}
// 2. uninitialized html.Node struct has Type equal to html.ErrorNode by default
{
var defaultNode html.Node
if defaultNode.Type != html.ErrorNode {
fmt.Fprintf(os.Stderr, "FAIL: expected default html.Node.Type to be html.ErrorNode, got %v\n", defaultNode.Type)
os.Exit(1)
}
}
// 3. explicitly created html.Node with html.ErrorNode retains its Type and error Data
{
errMsg := "invalid html token encountered"
node := &html.Node{
Type: html.ErrorNode,
Data: errMsg,
}
if node.Type != html.ErrorNode {
fmt.Fprintf(os.Stderr, "FAIL: expected node.Type to be html.ErrorNode, got %v\n", node.Type)
os.Exit(1)
}
if node.Data != errMsg {
fmt.Fprintf(os.Stderr, "FAIL: expected node.Data to be %q, got %q\n", errMsg, node.Data)
os.Exit(1)
}
}
// 4. html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode
{
otherTypes := []struct {
name string
nodeType html.NodeType
}{
{"TextNode", html.TextNode},
{"DocumentNode", html.DocumentNode},
{"ElementNode", html.ElementNode},
{"CommentNode", html.CommentNode},
{"DoctypeNode", html.DoctypeNode},
{"RawNode", html.RawNode},
}
for _, ot := range otherTypes {
if ot.nodeType == html.ErrorNode {
fmt.Fprintf(os.Stderr, "FAIL: html.ErrorNode unexpectedly matches %s\n", ot.name)
os.Exit(1)
}
}
}
// 5. html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode
{
doc, err := html.Parse(strings.NewReader("<!DOCTYPE html><html><head><title>Test</title></head><body><!-- comment --><h1>Title</h1><p>Text</p></body></html>"))
if err != nil {
fmt.Fprintf(os.Stderr, "FAIL: html.Parse returned error: %v\n", err)
os.Exit(1)
}
var errorNodes []*html.Node
var walk func(*html.Node)
walk = func(n *html.Node) {
if n.Type == html.ErrorNode {
errorNodes = append(errorNodes, n)
}
for c := n.FirstChild; c != nil; c = c.NextSibling {
walk(c)
}
}
walk(doc)
if len(errorNodes) != 0 {
fmt.Fprintf(os.Stderr, "FAIL: expected 0 ErrorNodes in parsed document, found %d\n", len(errorNodes))
os.Exit(1)
}
}
fmt.Println("PASS: all contract assertions passed")
}
Origin Seeder
anonymous