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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <table style="width:700px">
5 <tr>
6 <td>top</td>
7 <td style="width:400px">
8 <b style="border:solid;">
9 <i style="
10 background-color:green;
11 margin: -30px 0px 0px 0px;
12 padding: 1px 0px 0px 0px;">
13 Here is some text.
14 </i>
15 </b>
16 </td>
17 </tr>
18 </table>
19
20 <table style="width:700px">
21 <tr>
22 <td>right</td>
23 <td style="width:400px">
24 <b style="border:solid;">
25 <i style="
26 background-color:green;
27 margin: 0px -208px 0px 0px;
28 padding: 0px 1px 0px 0px;">
29 Here is some text.
30 </i>
31 </b>
32 </td>
33 </tr>
34 </table>
35
36 <table style="width:700px">
37 <tr>
38 <td>bottom</td>
39 <td style="width:400px">
40 <b style="border:solid;">
41 <i style="
42 background-color:green;
43 margin: 0px 0px -30px 0px;
44 padding: 0px 0px 1px 0px;">
45 Here is some text.
46 </i>
47 </b>
48 </td>
49 </tr>
50 </table>
51
52 <table style="width:700px">
53 <td>left</td>
54 <td style="width:400px">
55 <b style="border:solid;">
56 <i style="
57 background-color:green;
58 margin: 0px 0px 0px -208px;
59 padding: 0px 0px 0px 31px;">
60 Here is some text.
61 </i>
62 </b>
63 </td>
64 </tr>
65 </table>
66 </body>
67 </html>
OLDNEW
« 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