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

Side by Side Diff: LayoutTests/fast/sub-pixel/table-cells-with-padding-do-not-wrap.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #cell { 5 #cell {
6 font: menu; 6 font: menu;
7 background-color: skyblue; 7 background-color: skyblue;
8 padding-left: .73em; 8 padding-left: .73em;
9 white-space: nowrap; 9 white-space: nowrap;
10 } 10 }
11 #display-cell { 11 #display-cell {
12 font: menu; 12 font: menu;
13 background-color: green; 13 background-color: green;
14 display: table-cell; 14 display: table-cell;
15 padding-left: .73em; 15 padding-left: .73em;
16 white-space: nowrap; 16 white-space: nowrap;
17 } 17 }
18 </style> 18 </style>
19 <script src="../js/resources/js-test-pre.js"></script> 19 <script src="../../resources/js-test.js"></script>
20 </head> 20 </head>
21 <body> 21 <body>
22 <table> 22 <table>
23 <tr> 23 <tr>
24 <td id="cell">Should not wrap</td> 24 <td id="cell">Should not wrap</td>
25 </tr> 25 </tr>
26 </table> 26 </table>
27 <div id="display-cell">Should not wrap</div> 27 <div id="display-cell">Should not wrap</div>
28 28
29 <script> 29 <script>
(...skipping 15 matching lines...) Expand all
45 testFailed(description + ' wrapps.'); 45 testFailed(description + ' wrapps.');
46 } 46 }
47 47
48 testHeight('cell', 'table cell'); 48 testHeight('cell', 'table cell');
49 testHeight('display-cell', 'display: table-cell'); 49 testHeight('display-cell', 'display: table-cell');
50 50
51 51
52 </script> 52 </script>
53 </body> 53 </body>
54 </html> 54 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/sub-pixel/table-cells-have-stable-width.html ('k') | LayoutTests/fast/sub-pixel/tiled-canvas-elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698