| Index: third_party/WebKit/LayoutTests/paint/printing/print-box-shadow.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/printing/print-box-shadow.html b/third_party/WebKit/LayoutTests/paint/printing/print-box-shadow.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..69b57f8ef4398f8be5e357ee968a4033f81a2748
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/printing/print-box-shadow.html
|
| @@ -0,0 +1,24 @@
|
| +<!doctype HTML>
|
| +<style>
|
| +#parent {
|
| + height: 125px;
|
| + width: 330px;
|
| + overflow: hidden;
|
| + border: 1px solid black;
|
| +}
|
| +
|
| +#child {
|
| + box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 17px 0px;
|
| + height: 125px;
|
| + overflow:hidden;
|
| +}
|
| +
|
| +</style>
|
| +<div id="parent">
|
| + <div id="child">
|
| + </div>
|
| +</div>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.setPrinting();
|
| +</script>
|
|
|