Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / box-shadow / inset-shadow-large-offset.html
blobbd96afc1849f9f63f4a85bb4320a995c5c122b97
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .box {
6 width: 100px;
7 height: 100px;
8 margin: 10px;
9 background-color: red;
11 </style>
12 </head>
13 <body>
15 <!-- You should see no red -->
16 <div class="box" style="box-shadow: 150px 150px 0 green inset"></div>
17 <div class="box" style="box-shadow: -150px -150px 0 green inset"></div>
19 </body>
20 </html>