all-features.html 713 B

1234567891011121314151617181920212223242526272829
  1. <head>
  2. <meta http-equiv="Content-Security-Policy" content="script-src 'self' https://ckeditor.com 'unsafe-inline' 'unsafe-eval'">
  3. </head>
  4. <div style="margin-bottom: 10px;">
  5. <button type="button" id="clear-content">Clear editor</button>
  6. <button type="button" id="print-data-action">Open print preview</button>
  7. <button id="read-only">Turn on read-only mode</button>
  8. <iframe id="print-data-container" aria-hidden="true" tabindex="-1"></iframe>
  9. </div>
  10. <div id="editor">
  11. </div>
  12. <style>
  13. #print-data-container {
  14. position: absolute;
  15. width: 1px;
  16. height: 1px;
  17. margin: -1px;
  18. border: 0;
  19. padding: 0;
  20. white-space: nowrap;
  21. clip-path: inset(100%);
  22. clip: rect(0 0 0 0);
  23. overflow: hidden;
  24. }
  25. </style>