| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <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>
- <form style="margin: 20px 0;">
- <input type="text" placeholder="Type your name..." value="Nick" />
- <input type="text" placeholder="Type your surname..." value="Thomas" disabled />
- </form>
- <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>
- <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>
- <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>
- <form style="margin: 20px 0;">
- <label><input type="radio" name="test" value="test1" checked />Test 1</label>
- <label><input type="radio" name="test" value="test2" /> Test 2</label>
- </form>
|