Skip to content

Instantly share code, notes, and snippets.

@xxx
Created July 26, 2009 20:28
Show Gist options
  • Save xxx/155908 to your computer and use it in GitHub Desktop.
Save xxx/155908 to your computer and use it in GitHub Desktop.
***** what is expected:
<!DOCTYPE html>
<html>
<head></head>
<body>
<div id='header'>
<script data-canvas_name='login' type='application/processing'>
int x_axis = 755;
</script>
</div>
<form method="post" action="/users"><input type="submit" value="Create user" name="submit" id="submit"/>
</form>
</body>
</html>
***** what actually renders:
<!DOCTYPE html>
<html>
<head></head>
<body>
<div id='header'>
<script data-canvas_name='login' type='application/processing'>
int x_axis = 755;
</script>
</div>
<input type="submit" value="Create user" name="submit" id="submit"/>
<form method="post" action="/users">0</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment