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

Unified Diff: LayoutTests/fast/css/padding-margin-negative-border-expected.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
Index: LayoutTests/fast/css/padding-margin-negative-border-expected.html
diff --git a/LayoutTests/fast/css/padding-margin-negative-border-expected.html b/LayoutTests/fast/css/padding-margin-negative-border-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..c5ecf4b8f7b2238de5d06a9eccf57c08894a95bd
--- /dev/null
+++ b/LayoutTests/fast/css/padding-margin-negative-border-expected.html
@@ -0,0 +1,70 @@
+<!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;
+ border-color:white">
+ <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">
+ <tr>
+ <td>left</td>
+ <td style="width:400px">
+ <b style="border:solid;
+ border-color:white">
+ <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 | « LayoutTests/fast/css/padding-margin-negative-border.html ('k') | Source/core/rendering/RenderBoxModelObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698