All checks were successful
ci / fast (linux) (push) Successful in 7m16s
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>
13 lines
225 B
HTML
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>
|