blob: 08f3a6e82413c3571e67658596a5b234882827ac [file] [log] [blame]
<!--This test verifies the leading spaces are ignored when parising the attribute of an SVG list property-->
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
filter: url(#f);
}
</style>
<body>
<svg height="0">
<filter id="f">
<feColorMatrix values="
0 0 0 0 0
1 1 1 0 0
0 0 0 0 0
0 0 0 1 0">
</filter>
</svg>
<div class="box"></div>
</body>