Files
rust_browser/tests/manual/js_test.html
Zachary D. Rowitsch 9ca0a123bb
All checks were successful
ci / fast (linux) (push) Successful in 7m16s
Add form submission with textarea, submitter tracking, multipart encoding, and submit events (Story 4.4)
Implement full form submission pipeline: textarea form data collection with CR+LF newline
normalization, submit button value inclusion via submitter tracking (Option<NodeId>),
multipart/form-data and text/plain encoding support, configurable content_type threading
through navigate_post → NetworkStack → HttpLoader, and cancelable submit event dispatch
with preventDefault support at all three trigger sites. Includes review fixes for UTF-8
safety in newline normalization, RFC 7578 field name escaping in multipart encoding, and
boundary collision avoidance. 15 unit tests, 3 integration tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 19:45:32 -04:00

13 lines
225 B
HTML

<!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1>
<button type="button" onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>
<p id="demo"></p>
</body>
</html>