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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/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, 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/row-box-shadow-expected.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/table/row-box-shadow.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/row-box-shadow.html b/third_party/WebKit/LayoutTests/fast/table/row-box-shadow.html
new file mode 100644
index 0000000000000000000000000000000000000000..da351cb60acb3778d4aa1ab58d59c53fa7d18dc8
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/row-box-shadow.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML>
+<style>
+ .shadow-normal { box-shadow: black 5px -5px 0; }
+ .shadow-inset { box-shadow: black 5px 5px 0 inset; }
+ tr { background-color: blue; }
+ td { width: 100px; height: 100px; background-color: rgba(255,0,0,0.5); }
+ table { border-spacing: 10px; }
+</style>
+<table>
+ <tr><td></td><td></td></tr>
+ <tr class="shadow-normal"><td></td><td></td></tr>
+ <tr class="shadow-inset"><td></td><td></td></tr>
+</table>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/row-box-shadow-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698