Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: LayoutTests/fast/css/padding-margin-negative-border.html

Issue 242903002: ASSERTION FAILED: x2 >= x1 in WebCore::RenderObject::drawSolidBoxSide (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/padding-margin-negative-border-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/fast/css/padding-margin-negative-border-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698