OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Clipboard permission test for Chrome. | 5 // Clipboard permission test for Chrome. |
6 // browser_tests.exe --gtest_filter=ClipboardApiTest.Extension | 6 // browser_tests.exe --gtest_filter=ClipboardApiTest.Extension |
7 | 7 |
8 chrome.test.runTests([ | 8 chrome.test.runTests([ |
9 function domCopy() { | 9 function domCopy() { |
10 if (document.execCommand('copy')) | 10 if (document.execCommand('copy')) |
11 chrome.test.succeed(); | 11 chrome.test.succeed(); |
12 else | 12 else |
13 chrome.test.fail('execCommand("copy") failed'); | 13 chrome.test.fail('execCommand("copy") failed'); |
14 }, | 14 }, |
15 function domPaste() { | 15 function domPaste() { |
16 if (document.execCommand('paste')) | 16 if (document.execCommand('paste')) |
17 chrome.test.succeed(); | 17 chrome.test.succeed(); |
18 else | 18 else |
19 chrome.test.fail('execCommand("paste") failed'); | 19 chrome.test.fail('execCommand("paste") failed'); |
20 }, | 20 }, |
21 function copyInIframe() { | 21 function copyInIframe() { |
22 var ifr = document.createElement('iframe'); | 22 var ifr = document.createElement('iframe'); |
23 document.body.appendChild(ifr); | 23 document.body.appendChild(ifr); |
24 if (ifr.contentDocument.execCommand('copy')) | 24 window.command = 'copy'; |
25 chrome.test.succeed(); | 25 ifr.contentDocument.write('<script src="iframe.js"></script>'); |
26 else | |
27 chrome.test.fail('execCommand("copy") failed in iframe'); | |
28 }, | 26 }, |
29 function pasteInIframe() { | 27 function pasteInIframe() { |
30 var ifr = document.createElement('iframe'); | 28 var ifr = document.createElement('iframe'); |
31 document.body.appendChild(ifr); | 29 document.body.appendChild(ifr); |
32 if (ifr.contentDocument.execCommand('paste')) | 30 window.command = 'paste'; |
33 chrome.test.succeed(); | 31 ifr.contentDocument.write('<script src="iframe.js"></script>'); |
34 else | |
35 chrome.test.fail('execCommand("paste") failed in iframe'); | |
36 } | 32 } |
37 ]); | 33 ]); |
38 | 34 |
| 35 |
| 36 function testDone(result) { |
| 37 if (result) |
| 38 chrome.test.succeed(); |
| 39 else |
| 40 chrome.test.fail(); |
| 41 } |
OLD | NEW |