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

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: Updated Created 5 years, 4 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 <!DOCTYPE html>
2 <style>
3 .scrollingElement
4 {
5 width: 100px;
6 height: 100px;
7 background-color: green;
8 overflow: scroll;
9 }
10 table
11 {
12 margin-bottom: 35px;
13 }
14 </style>
15 <table class="scrollingElement" cellspacing=0>
16 <tbody>
17 <tr><td> text text text text</td></tr>
mstensho (USE GERRIT) 2015/07/27 21:13:10 Weird indentation
18 </tbody>
19 </table>
20 <table cellspacing=0>
21 <tbody class="scrollingElement">
22 <tr><td> text text text text</td></tr>
23 </tbody>
24 </table>
25 <table cellspacing=0>
26 <tbody>
27 <tr class="scrollingElement"><td>text text text text</td></tr>
28 </tbody>
29 </table>
30 <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