Index: third_party/WebKit/LayoutTests/fast/table/tbody-background-image-repeat-x.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/tbody-background-image-repeat-x.html b/third_party/WebKit/LayoutTests/fast/table/tbody-background-image-repeat-x.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..85e4c8a77ed056aa2716f632c14c8106720206cd |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/tbody-background-image-repeat-x.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<style> |
+ table { border-collapse: collapse; } |
+ td { height:200px; } |
+</style> |
+<p>crbug.com/35697: The image should be tiled across the first row of the table.</p> |
+<table style="width:100%;"> |
+ <tbody style="background:url(../..//images/resources/border-image-srgb-color-profile.png) repeat-x;"> |
+ <tr> |
+ <td></td> |
+ <td></td> |
+ </tr> |
+ <tr> |
+ <td></td> |
+ <td></td> |
+ </tr> |
+ </tbody> |
+</table> |