- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Apr 2009 06:20:44 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/tests/validation/full/invalid/unknown-attribute In directory hutz:/tmp/cvs-serv17496 Modified Files: col.xhtml colgroup.html colgroup.xhtml Log Message: fixes Index: colgroup.html =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/colgroup.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- colgroup.html 13 Apr 2009 06:09:37 -0000 1.1 +++ colgroup.html 13 Apr 2009 06:20:42 -0000 1.2 @@ -1,9 +1,12 @@ <!DOCTYPE html> <html> <head> -<title>element colgroup with invalid attribute</title> +<title>element col with invalid attribute</title> </head> <body> -<colgroup bar="foo">baz</colgroup> +<table> +<colgroup bar="foo"></colgroup> +<tr><td></td></tr> +</table> </body> </html> Index: col.xhtml =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/col.xhtml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- col.xhtml 13 Apr 2009 06:01:51 -0000 1.1 +++ col.xhtml 13 Apr 2009 06:20:42 -0000 1.2 @@ -1,8 +1,11 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>element col with invalid attribute</title> +<title>element code with invalid attribute</title> </head> <body> -<col bar="foo">baz</col> +<table> +<colgroup><col bar="foo"/></colgroup> +<tr><td></td></tr> +</table> </body> </html> Index: colgroup.xhtml =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/colgroup.xhtml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- colgroup.xhtml 13 Apr 2009 06:09:37 -0000 1.1 +++ colgroup.xhtml 13 Apr 2009 06:20:42 -0000 1.2 @@ -1,8 +1,11 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>element colgroup with invalid attribute</title> +<title>element code with invalid attribute</title> </head> <body> -<colgroup bar="foo">baz</colgroup> +<table> +<colgroup bar="foo"></colgroup> +<tr><td></td></tr> +</table> </body> </html>
Received on Monday, 13 April 2009 06:21:02 UTC