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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/self-painting-row-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 tr { background-color: blue; will-change: transform; }
6 td { width: 100px; height: 100px; background-color: rgba(255,0,0,0.5); }
7 table { border-spacing: 10px; }
8 </style>
9 <table>
10 <tr><td></td><td></td></tr>
11 <tr class="shadow-normal"><td></td><td></td></tr>
12 <tr class="shadow-inset"><td></td><td></td></tr>
13 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698