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

Side by Side Diff: LayoutTests/fast/table/overflowScroll.html

Issue 1228373007: Compute the correct overflow-x and overflow-y values for table elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
(Empty)
1 <style>
Julien - ping for review 2015/07/16 14:58:12 Cough, cough, <!DOCTYPE>, cough, cough (not repeat
2 .scrollingElement
3 {
4 width: 100px;
5 height: 100px;
6 background-color: green;
7 overflow: scroll;
8 }
9 table
10 {
11 margin-bottom: 35px;
12 }
13 </style>
14 <table class="scrollingElement" cellspacing=0>
15 <tbody>
16 <tr><td> text text text text</td></tr>
Julien - ping for review 2015/07/16 14:58:12 Is the content needed here and the following table
17 </tbody>
18 </table>
19 <table cellspacing=0>
20 <tbody class="scrollingElement">
21 <tr><td> text text text text</td></tr>
22 </tbody>
23 </table>
24 <table cellspacing=0>
25 <tbody>
26 <tr class="scrollingElement"><td>text text text text</td></tr>
27 </tbody>
28 </table>
29 <p> crbug.com/368699: Tables, table rows and table sections don't have scrollbar s when they have overflow:scroll. </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698