2 <p>Pasting in the text area should only fire one paste event.
</p>
3 <textarea id=
"test">Content
</textarea>
4 <p id=
"results">FAILED
</p>
6 <script src=
"../editing.js"></script>
11 document
.getElementById("test").addEventListener("paste", function(){
15 document
.getElementById("test").focus();
16 execSelectAllCommand();
21 document
.getElementById("results").innerText
= "PASSED";
23 document
.getElementById("results").innerText
= "FAILED firedCount:" + firedCount
;
26 runDumpAsTextEditingTest(false);