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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/table/section-box-shadow.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/section-box-shadow.html b/third_party/WebKit/LayoutTests/fast/table/section-box-shadow.html
new file mode 100644
index 0000000000000000000000000000000000000000..8d8dea6c8ed13914641877fe399116a18062080c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/section-box-shadow.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<style>
+ .shadow-normal { box-shadow: black 5px -5px 0; }
+ .shadow-inset { box-shadow: black 5px 5px 0 inset; }
+ thead, tbody { background-color: blue; }
+ tr { background-color: rgba(255,0,0,0.5); }
+ td { width: 100px; height: 100px; }
+ table { border-spacing: 10px; }
+</style>
+<table>
+ <thead class="shadow-normal">
+ <tr><td></td><td></td></tr>
+ <tr><td></td><td></td></tr>
+ </tbody>
+ <tbody class="shadow-inset">
+ <tr><td></td><td></td></tr>
+ <tr><td></td><td></td></tr>
+ </tbody>
+</table>

Powered by Google App Engine
This is Rietveld 408576698