3 <p>This tests querying font size when there is a typing style. WebKit should not crash and you should see 'PASS':
</p>
4 <span id=
"test" contenteditable
><br></span>
5 <script type=
"text/javascript">
8 testRunner
.dumpAsText();
10 window
.getSelection().collapse(document
.getElementById('test').firstChild
, 0);
11 document
.execCommand('bold', false, null);
12 document
.queryCommandValue('fontSize');
13 document
.getElementById('test').innerHTML
= 'PASS';