print.js 453 B

1234567891011121314151617
  1. /**
  2. * Created by JetBrains PhpStorm.
  3. * User: dongyancen
  4. * Date: 12-9-28
  5. * Time: 下午1:34
  6. * To change this template use File | Settings | File Templates.
  7. */
  8. module('plugins.print');
  9. test('print',function(){
  10. // var editor = te.obj[0];
  11. // var html = '<p>for print</p>';
  12. // editor.setContent(html);
  13. // editor.execCommand('print');
  14. // equal(editor.body.innerHTML,html,'打印不会对页面代码产生影响');
  15. equal('','');
  16. });