Index: content/test/data/accessibility/col.html |
diff --git a/content/test/data/accessibility/caption.html b/content/test/data/accessibility/col.html |
similarity index 51% |
copy from content/test/data/accessibility/caption.html |
copy to content/test/data/accessibility/col.html |
index 69141eb6d58643618c6d44aa16f9e4ba43da86cb..20ef1f424b3d278d8a9367800e2502bb0b6bb6c4 100644 |
--- a/content/test/data/accessibility/caption.html |
+++ b/content/test/data/accessibility/col.html |
@@ -1,21 +1,19 @@ |
<!DOCTYPE html> |
<html> |
<body> |
- |
<table> |
- <caption>Browser and Engine</caption> |
+ <colgroup> |
+ <col span="1" style="background-color:blue"> |
+ <col style="background-color:green"> |
+ </colgroup> |
<tr> |
<th>Browser</th> |
- <th>Engine</th> |
+ <th>Rendering Engine</th> |
</tr> |
<tr> |
<td>Chrome</td> |
<td>Blink</td> |
</tr> |
- <tr> |
- <td>Safari</td> |
- <td>WebKit</td> |
- </tr> |
</table> |
</body> |