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.ExtensionNoPermission | 6 // browser_tests.exe --gtest_filter=ClipboardApiTest.ExtensionNoPermission |
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") succeeded'); | 19 chrome.test.fail('execCommand("paste") succeeded'); |
| 20 }, |
| 21 function copyInIframe() { |
| 22 var ifr = document.createElement('iframe'); |
| 23 document.body.appendChild(ifr); |
| 24 if (ifr.contentDocument.execCommand('copy')) |
| 25 chrome.test.succeed(); |
| 26 else |
| 27 chrome.test.fail('execCommand("copy") failed in iframe'); |
| 28 }, |
| 29 function pasteInIframe() { |
| 30 var ifr = document.createElement('iframe'); |
| 31 document.body.appendChild(ifr); |
| 32 if (ifr.contentDocument.execCommand('paste')) |
| 33 chrome.test.fail('execCommand("paste") succeeded in iframe'); |
| 34 else |
| 35 chrome.test.succeed(); |
20 } | 36 } |
21 ]); | 37 ]); |
OLD | NEW |