haikuwebkit/LayoutTests/inspector/styles/background-parsing-crash.html

22 lines
368 B
HTML

<html>
<head>
<style>
.absent {
background: #fff url(foo.png) no-repeat left 4px;
}
body {
background: #fff;
}
</style>
<script src="../../http/tests/inspector/resources/inspector-test.js"></script>
<script>
function test()
{
InspectorTest.completeTest();
}
</script>
</head>
<body onload="runTest()">
This test passes if it doesn't ASSERT.
</body>
</html>