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

Side by Side Diff: LayoutTests/fast/table/overflowScroll-expected.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>
2 .scrollingElement
3 {
4 width: 100px;
5 height: 100px;
6 background-color: green;
7 }
8 table
9 {
10 margin-bottom: 35px;
11 }
12 </style>
13 <table class="scrollingElement" cellspacing=0>
14 <tbody>
15 <tr><td> text text text text</td></tr>
16 </tbody>
17 </table>
18 <table cellspacing=0>
19 <tbody class="scrollingElement">
20 <tr><td> text text text text</td></tr>
21 </tbody>
22 </table>
23 <table cellspacing=0>
24 <tbody>
25 <tr class="scrollingElement"><td>text text text text</td></tr>
26 </tbody>
27 </table>
28 <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