Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <script src="../../resources/testharness.js"></script> | |
| 3 <script src="../../resources/testharnessreport.js"></script> | |
| 4 <script> | |
| 5 test(function() { | |
| 6 assert_true(document.queryCommandSupported('copy')); | |
| 7 assert_true(document.queryCommandSupported('cut')); | |
| 8 assert_true(document.queryCommandSupported('paste')); | |
|
dcheng
2015/10/14 16:47:37
Should we test queryCommandEnabled as well? Or is
yosin_UTC9
2015/10/15 01:30:47
queryCommandEnabled for copy/cut/paster are done b
| |
| 9 }); | |
| 10 </script> | |
| OLD | NEW |