2 <script src=
"../../resources/testharness.js"></script>
3 <script src=
"../../resources/testharnessreport.js"></script>
6 baseline-shift: inherit;
9 <svg height=
"0"><text></text></svg>
12 window
.svg
= document
.querySelector('svg');
13 window
.textElement
= document
.querySelector('text');
16 {value
: 'baseline', expected
: '0px'},
21 ].forEach(function(item
) {
23 svg
.style
.setProperty('baseline-shift', item
.value
);
24 assert_equals(getComputedStyle(textElement
).baselineShift
, item
.expected
|| item
.value
);
25 }, 'Inheritance of the baseline-shift property - ' + item
+ '.');