This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 15513 - section #4.9 Hello, is there any specific reason, why isn't posible, in html5 this? <!DOCTYPE html> <title>asd</title> <table> <tr> <form> <td>&nbsp;</td> </form> </tr> </table> browser can handle it OK thx
Summary: section #4.9 Hello, is there any specific reason, why isn't posible, in html5...
Status: RESOLVED WORKSFORME
Alias: None
Product: HTML WG
Classification: Unclassified
Component: HTML5 spec (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: ---
Assignee: Ian 'Hixie' Hickson
QA Contact: HTML WG Bugzilla archive list
URL: http://www.whatwg.org/specs/web-apps/...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-11 07:26 UTC by contributor
Modified: 2012-01-12 10:59 UTC (History)
4 users (show)

See Also:


Attachments

Description contributor 2012-01-11 07:26:44 UTC
Specification: http://dev.w3.org/html5/spec/Overview.html
Multipage: http://www.whatwg.org/C#top
Complete: http://www.whatwg.org/c#top

Comment:
section #4.9

Hello,
is there any specific reason, why isn't posible, in html5 this?

<!DOCTYPE html>
<title>asd</title>
<table>
<tr>
<form>
<td>&nbsp;</td>
</form>
</tr>
</table>

browser can handle it OK

thx


Posted from: 193.165.211.170
User agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7
Comment 1 Honza Strnad 2012-01-11 07:30:25 UTC
It would be very helpful in data grid inline actions/editing without ajax.
Comment 2 Simon Pieters 2012-01-11 12:32:55 UTC
It doesn't parse like you think it does. The use case is covered by

<!DOCTYPE html>
<title>asd</title>
<table>
<tr>
<td><form id=x><input name=a></form></td>
<td><input name=b form=x></td>
</tr>
</table>
Comment 3 Honza Strnad 2012-01-11 13:42:48 UTC
That's very nice. 

Thank you for your answer!