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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/section-box-shadow.html

Issue 1963313002: Implement box-shadow for table section and row (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <style>
3 .shadow-normal { box-shadow: black 5px -5px 0; }
4 .shadow-inset { box-shadow: black 5px 5px 0 inset; }
5 thead, tbody { background-color: blue; }
6 tr { background-color: rgba(255,0,0,0.5); }
7 td { width: 100px; height: 100px; }
8 table { border-spacing: 10px; }
9 </style>
10 <table>
11 <thead class="shadow-normal">
12 <tr><td></td><td></td></tr>
13 <tr><td></td><td></td></tr>
14 </tbody>
15 <tbody class="shadow-inset">
16 <tr><td></td><td></td></tr>
17 <tr><td></td><td></td></tr>
18 </tbody>
19 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698