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

Side by Side Diff: LayoutTests/fast/table/border-collapsing/004-vertical.html

Issue 249723003: Remove main frame overflow from some non-scrollbar tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Windows expectations 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html4 0/strict.dtd"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html4 0/strict.dtd">
2 <html><head> 2 <html><head>
3 <title>Table Border Models</title> 3 <title>Table Border Models</title>
4 <style type="text/css"> 4 <style type="text/css">
5 body { overflow: hidden; }
5 TABLE { margin: 1em; width: auto; border: medium solid blue; } 6 TABLE { margin: 1em; width: auto; border: medium solid blue; }
6 TD { border: thin solid green; padding: 5px; } 7 TD { border: thin solid green; padding: 5px; }
7 TH { border: medium solid purple; padding: 5px; } 8 TH { border: medium solid purple; padding: 5px; }
8 TABLE.one, TABLE.two { border-spacing: 1em; } 9 TABLE.one, TABLE.two { border-spacing: 1em; }
9 TABLE.one { border-collapse: collapse; } 10 TABLE.one { border-collapse: collapse; }
10 TABLE.two { border-collapse: separate; } 11 TABLE.two { border-collapse: separate; }
11 TABLE.three { border-collapse: separate; border-spacing: 0 0.5em; } 12 TABLE.three { border-collapse: separate; border-spacing: 0 0.5em; }
12 TABLE.four { border-collapse: separate; border-spacing: 0.5em 0; } 13 TABLE.four { border-collapse: separate; border-spacing: 0.5em 0; }
13 TABLE.five { border-collapse: separate; } 14 TABLE.five { border-collapse: separate; }
14 TABLE.five, TABLE.five TD, TABLE.five TH, TABLE.five CAPTION { border: none; } 15 TABLE.five, TABLE.five TD, TABLE.five TH, TABLE.five CAPTION { border: none; }
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 </td> 224 </td>
224 <td> 225 <td>
225 This table should have a 1em margin around all edges. This margin 226 This table should have a 1em margin around all edges. This margin
226 is measured from the <em>outer edge</em> of its border. 227 is measured from the <em>outer edge</em> of its border.
227 </td> 228 </td>
228 </tr> 229 </tr>
229 </tbody> 230 </tbody>
230 </table> 231 </table>
231 </div> 232 </div>
232 </body></html> 233 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698