Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / box-shadow / single-pixel-shadow.html
blobce3792bb143214f4a8ea9a6f652dac17df4e075e
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
6 .box {
7 height: 4px;
8 width: 4px;
9 margin: 20px;
10 box-shadow: 0 0 1px black;
13 .scaled {
14 -webkit-transform-origin: -1px -1px;
15 transform: scale(20);
17 </style>
18 </head>
19 <body>
20 <div class="box"></div>
21 <div class="scaled box"></div>
22 </body>
23 </html>