4 https://bugzilla.mozilla.org/show_bug.cgi?id=1512745
8 <title>Test pair parsing
</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=1512745">Mozilla Bug
1512745</a>
15 <svg width=
"230" height=
"120"
16 xmlns=
"http://www.w3.org/2000/svg"
17 xmlns:
xlink=
"http://www.w3.org/1999/xlink">
19 <filter><feGaussianBlur id=
"x1" stdDeviation=
" 5 " /></filter>
20 <filter><feGaussianBlur id=
"x2" stdDeviation=
" 5 10 " /></filter>
21 <filter><feGaussianBlur id=
"x3" stdDeviation=
"5 10 " /></filter>
22 <filter><feGaussianBlur id=
"x4" stdDeviation=
" 5,10 " /></filter>
26 <script class=
"testbody" type=
"text/javascript">
27 function checkValue(id, x, y) {
28 if (y === undefined) {
31 let e = document.getElementById(id);
32 is(e.stdDeviationX.baseVal, x,
"Wrong stdDeviationX");
33 is(e.stdDeviationY.baseVal, y,
"Wrong stdDeviationY");
37 checkValue(
"x2",
5,
10);
38 checkValue(
"x3",
5,
10);
39 checkValue(
"x4",
5,
10);