restrictedediting.html 955 B

12345678910111213141516171819202122232425262728293031
  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. <div id="editor">
  7. <h2>Heading 1</h2>
  8. <p>Paragraph <span class="restricted-editing-exception">it is editable</span></p>
  9. <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
  10. <ul>
  11. <li>UL List item 1</li>
  12. <li>UL List item 2</li>
  13. </ul>
  14. <ol>
  15. <li><span class="restricted-editing-exception">OL List item 1</span></li>
  16. <li>OL List item 2</li>
  17. </ol>
  18. <figure class="image image-style-side">
  19. <img alt="bar" src="sample.jpg">
  20. <figcaption>Caption</figcaption>
  21. </figure>
  22. <blockquote>
  23. <p>Quote</p>
  24. <ul>
  25. <li>Quoted UL List item 1</li>
  26. <li>Quoted UL List item <span class="restricted-editing-exception">2</span></li>
  27. </ul>
  28. <p>Quote</p>
  29. </blockquote>
  30. </div>