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

Side by Side Diff: LayoutTests/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.html

Issue 790943004: An align attribute should not be applied for wider children (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline the failed testcase (reftest) Created 6 years 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
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3 <!-- ***** BEGIN LICENSE BLOCK ***** 3 <!-- ***** BEGIN LICENSE BLOCK *****
4 - Version: MPL 1.1/GPL 2.0/LGPL 2.1 4 - Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 - 5 -
6 - The contents of this file are subject to the Mozilla Public License Version 6 - The contents of this file are subject to the Mozilla Public License Version
7 - 1.1 (the "License"); you may not use this file except in compliance with 7 - 1.1 (the "License"); you may not use this file except in compliance with
8 - the License. You may obtain a copy of the License at 8 - the License. You may obtain a copy of the License at
9 - http://www.mozilla.org/MPL/ 9 - http://www.mozilla.org/MPL/
10 - 10 -
11 - Software distributed under the License is distributed on an "AS IS" basis, 11 - Software distributed under the License is distributed on an "AS IS" basis,
12 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 12 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 - for the specific language governing rights and limitations under the 13 - for the specific language governing rights and limitations under the
14 - License. 14 - License.
15 - 15 -
16 - The Original Code is a layout regression testcase . 16 - The Original Code is a layout regression testcase .
17 - 17 -
18 - The Initial Developer of the Original Code is 18 - The Initial Developer of the Original Code is
19 - bmlk@gmx.de. 19 - bmlk@gmx.de.
20 - Portions created by the Initial Developer are Copyright (C) 2003 20 - Portions created by the Initial Developer are Copyright (C) 2003
21 - the Initial Developer. All Rights Reserved. 21 - the Initial Developer. All Rights Reserved.
22 - 22 -
23 - Contributor(s): 23 - Contributor(s):
24 - 24 -
25 - Alternatively, the contents of this file may be used under the terms of 25 - Alternatively, the contents of this file may be used under the terms of
26 - either the GNU General Public License Version 2 or later (the "GPL"), or 26 - either the GNU General Public License Version 2 or later (the "GPL"), or
27 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 27 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 - in which case the provisions of the GPL or the LGPL are applicable instead 28 - in which case the provisions of the GPL or the LGPL are applicable instead
29 - of those above. If you wish to allow use of your version of this file only 29 - of those above. If you wish to allow use of your version of this file only
30 - under the terms of either the GPL or the LGPL, and not to allow others to 30 - under the terms of either the GPL or the LGPL, and not to allow others to
31 - use your version of this file under the terms of the MPL, indicate your 31 - use your version of this file under the terms of the MPL, indicate your
32 - decision by deleting the provisions above and replace them with the notice 32 - decision by deleting the provisions above and replace them with the notice
33 - and other provisions required by the LGPL or the GPL. If you do not delete 33 - and other provisions required by the LGPL or the GPL. If you do not delete
34 - the provisions above, a recipient may use your version of this file under 34 - the provisions above, a recipient may use your version of this file under
35 - the terms of any one of the MPL, the GPL or the LGPL. 35 - the terms of any one of the MPL, the GPL or the LGPL.
36 - 36 -
37 - ***** END LICENSE BLOCK ***** --> 37 - ***** END LICENSE BLOCK ***** -->
38 <html> 38 <html>
39 <head> 39 <head>
40 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 40 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
41 <title>testscase for table overflow handling valign bottom</title> 41 <title>testscase for table overflow handling align right</title>
42 <style type="text/css"> 42 <style type="text/css">
43 table { 43 table {
44 width:200px; 44 width:200px;
45 } 45 }
46 #spacer { 46 #spacer {
47 height:100px; 47 height:100px;
48 } 48 }
49 #outer { 49 #outer {
50 width:10px; 50 width:10px;
51 height:10px; 51 height:10px;
52 border: solid green 1px; 52 border: solid green 1px;
53 margin-left:auto;
54 text-align:right;
53 } 55 }
54 #inner { 56 #inner {
55 width:300px; 57 width:300px;
56 height:400px; 58 height:400px;
57 border: solid red 1px; 59 border: solid red 1px;
60 margin-left:auto;
61 text-align:right;
58 } 62 }
59 #target { 63 #target {
60 vertical-align:bottom; 64
61 } 65 }
62 </style> 66 </style>
63 </head> 67 </head>
64 68
65 <body> 69 <body>
66 <table border="1"> 70 <table border="1">
67 <tr> 71 <tr>
68 <td id="spacer">foo</td> 72 <td id="spacer">foo</td>
69 <td id="target"><div id="outer"><div id="inner">d</div></div></td> 73 <td id="target"><div id="outer"><div id="inner">d</div></div></td>
70 </tr> 74 </tr>
71 </table> 75 </table>
72 76
73 </body> 77 </body>
74 78
75 </html> 79 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698