Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / elements / styles / background-parsing-crash.html
1 <html>
2 <head>
3 <style>
4 .absent {
5     background: #fff url(foo.png) no-repeat left 4px;
6 }
7
8 body {
9     background: #fff;
10 }
11 </style>
12 <script src="../../../http/tests/inspector/inspector-test.js"></script>
13 <script>
14 function test()
15 {
16     InspectorTest.completeTest();
17 }
18 </script>
19 </head>
20 <body onload="runTest()">
21 This test passes if it doesn't ASSERT.
22 </body>
23 </html>