- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Apr 2009 06:08:48 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/tests/validation/full/invalid/unknown-attribute In directory hutz:/tmp/cvs-serv17005 Modified Files: code.xhtml col.html Log Message: fixed Index: code.xhtml =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/code.xhtml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- code.xhtml 13 Apr 2009 06:01:02 -0000 1.1 +++ code.xhtml 13 Apr 2009 06:08:46 -0000 1.2 @@ -3,6 +3,9 @@ <title>element code with invalid attribute</title> </head> <body> -<code bar="foo">baz</code> +<table> +<colgroup><col bar="foo"/></colgroup> +<tr><td></td></tr> +</table> </body> </html> Index: col.html =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/col.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- col.html 13 Apr 2009 06:01:51 -0000 1.1 +++ col.html 13 Apr 2009 06:08:46 -0000 1.2 @@ -4,6 +4,9 @@ <title>element col with invalid attribute</title> </head> <body> -<col bar="foo">baz</col> +<table> +<col bar="foo"> +<tr><td></td></tr> +</table> </body> </html>
Received on Monday, 13 April 2009 06:08:57 UTC