restrictedediting-focus.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <p>
  2. <b>Mode</b>:
  3. <input type="radio" id="mode-standard" name="mode" value="standard" checked><label for="mode-standard">Standard</label>
  4. <input type="radio" id="mode-restricted" name="mode" value="restricted"><label for="mode-restricted">Restricted</label>
  5. </p>
  6. <form style="margin: 20px 0;">
  7. <input type="text" placeholder="Type your name..." value="Nick" />
  8. <input type="text" placeholder="Type your surname..." value="Thomas" disabled />
  9. </form>
  10. <div id="editor">
  11. <h2>Heading 1</h2>
  12. <p>Paragraph <span class="restricted-editing-exception">it is editable</span></p>
  13. <p>Exception on part of a word: <a href="ckeditor.com">coompi</a><span class="restricted-editing-exception"><a href="ckeditor.com">ter</a> (fix spelling in Firefox).</span></p>
  14. <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
  15. <ul>
  16. <li>UL List item 1</li>
  17. <li>UL List item 2</li>
  18. </ul>
  19. <ol>
  20. <li><span class="restricted-editing-exception">OL List item 1</span></li>
  21. <li>OL List item 2</li>
  22. </ol>
  23. <blockquote>
  24. <p>Quote</p>
  25. <ul>
  26. <li>Quoted UL List item 1</li>
  27. <li>Quoted UL List item <span class="restricted-editing-exception">2</span></li>
  28. </ul>
  29. <p>Quote</p>
  30. </blockquote>
  31. </div>
  32. <form style="margin: 20px 0;">
  33. <label><input type="radio" name="test" value="test1" checked />Test 1</label>
  34. <label><input type="radio" name="test" value="test2" /> Test 2</label>
  35. </form>