4 <meta name=
"viewport" content=
"width=800">
13 <script src=
"resources/autosizingTest.js"></script>
17 This test verifies that a text autosizing multiplier that is inherited from a
18 parent element's ComputedStyle is reflected in the computed font size, even if the
19 specified font size is different and the next text autosizing pass doesn't alter
23 var outer
= document
.querySelector('#outer');
24 var inner
= document
.createElement('div');
25 inner
.innerText
= outer
.innerText
;
26 inner
.style
.fontSize
= '12px';
27 outer
.appendChild(inner
);