Created
July 26, 2009 20:29
-
-
Save xxx/155909 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
***** 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