4 <script src="../resources/runner.js"></script>
8 var iframe = document.querySelector('iframe');
9 if (!iframe.contentDocument.queryCommandSupported('Copy')) {
10 alert('execCommand("copy") is not supported.');
11 if (window.testRunner)
12 testRunner.notifyDone();
16 PerfTestRunner.measureTime({
19 document.querySelector('iframe').contentDocument.execCommand('SelectAll');
22 document.querySelector('iframe').contentDocument.execCommand('Copy');
25 document.querySelector('iframe').parentNode.removeChild(iframe);
31 <iframe src="../Parser/resources/html5.html" onload="startTest()" width="800" height="600">