4 <style type=
"text/css">
9 <p>This tests pasting (InsertHTML) into an input element with a CSS rule div { display: none}.
10 You should see PASS below.
</p>
11 <input type=
"text" value=
"FAIL">
14 if (window
.testRunner
)
15 testRunner
.dumpAsText();
17 var input
= document
.querySelector('input');
20 document
.execCommand('InsertHTML', false, 'PASS');
22 document
.write(input
.value
);