| 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>
|
|
|