Index: LayoutTests/fast/css/padding-margin-negative-border.html |
diff --git a/LayoutTests/fast/css/padding-margin-negative-border.html b/LayoutTests/fast/css/padding-margin-negative-border.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6518ee5e5c6afd2ea8613bfb1c5fcee6bdd2c3fb |
--- /dev/null |
+++ b/LayoutTests/fast/css/padding-margin-negative-border.html |
@@ -0,0 +1,67 @@ |
+<!DOCTYPE html> |
+<html> |
+ <body> |
+ <table style="width:700px"> |
+ <tr> |
+ <td>top</td> |
+ <td style="width:400px"> |
+ <b style="border:solid;"> |
+ <i style=" |
+ background-color:green; |
+ margin: -30px 0px 0px 0px; |
+ padding: 1px 0px 0px 0px;"> |
+ Here is some text. |
+ </i> |
+ </b> |
+ </td> |
+ </tr> |
+ </table> |
+ |
+ <table style="width:700px"> |
+ <tr> |
+ <td>right</td> |
+ <td style="width:400px"> |
+ <b style="border:solid;"> |
+ <i style=" |
+ background-color:green; |
+ margin: 0px -208px 0px 0px; |
+ padding: 0px 1px 0px 0px;"> |
+ Here is some text. |
+ </i> |
+ </b> |
+ </td> |
+ </tr> |
+ </table> |
+ |
+ <table style="width:700px"> |
+ <tr> |
+ <td>bottom</td> |
+ <td style="width:400px"> |
+ <b style="border:solid;"> |
+ <i style=" |
+ background-color:green; |
+ margin: 0px 0px -30px 0px; |
+ padding: 0px 0px 1px 0px;"> |
+ Here is some text. |
+ </i> |
+ </b> |
+ </td> |
+ </tr> |
+ </table> |
+ |
+ <table style="width:700px"> |
+ <td>left</td> |
+ <td style="width:400px"> |
+ <b style="border:solid;"> |
+ <i style=" |
+ background-color:green; |
+ margin: 0px 0px 0px -208px; |
+ padding: 0px 0px 0px 31px;"> |
+ Here is some text. |
+ </i> |
+ </b> |
+ </td> |
+ </tr> |
+ </table> |
+ </body> |
+</html> |