Index: content/test/data/accessibility/colgroup.html |
diff --git a/content/test/data/accessibility/colgroup.html b/content/test/data/accessibility/colgroup.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ab781565fbab1bceb522de6fdec2bf3503804f6e |
--- /dev/null |
+++ b/content/test/data/accessibility/colgroup.html |
@@ -0,0 +1,21 @@ |
+<!DOCTYPE html> |
+<html> |
+<body> |
+ |
+<table border=1> |
+ <colgroup> |
+ <col span="1" style="background-color:red"> |
+ <col style="background-color:yellow"> |
+ </colgroup> |
+ <tr> |
+ <th>Single</th> |
+ <th>Pair</th> |
+ </tr> |
+ <tr> |
+ <td>A</td> |
+ <td>AA</td> |
+ </tr> |
+</table> |
+ |
+</body> |
+</html> |