| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <p>
- <b>Mode</b>:
- <input type="radio" id="mode-standard" name="mode" value="standard" checked><label for="mode-standard">Standard</label>
- <input type="radio" id="mode-restricted" name="mode" value="restricted"><label for="mode-restricted">Restricted</label>
- </p>
- <div id="editor">
- <h2>Heading 1</h2>
- <p>Paragraph <span class="restricted-editing-exception">it is editable</span></p>
- <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>
- <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
- <figure class="table">
- <table>
- <tbody>
- <tr>
- <td><span class="restricted-editing-exception">foo bar</span></td>
- </tr>
- </tbody>
- </table>
- </figure>
- <ul>
- <li>UL List item 1</li>
- <li>UL List item 2</li>
- </ul>
- <ol>
- <li><span class="restricted-editing-exception">OL List item 1</span></li>
- <li>OL List item 2</li>
- </ol>
- <figure class="image image-style-side">
- <img alt="bar" src="sample.jpg">
- <figcaption>Caption</figcaption>
- </figure>
- <blockquote>
- <p>Quote</p>
- <ul>
- <li>Quoted UL List item 1</li>
- <li>Quoted UL List item <span class="restricted-editing-exception">2</span></li>
- </ul>
- <p>Quote</p>
- </blockquote>
- </div>
|