2006-11-16から1日間の記事一覧

firefox

web

Firefoxで <html> <head> </head> <body> before <table> <form> <tr> <td> test </td> </tr> </form> </table> after </body> </html>のようなhtmlを読むとDOM treeが <html> <head> </head> <body> before <table> <form></form> <tbody> <tr> <td> test </td> </tr> </tbody> </table> after </body> </html>になってしまう。何故?