/
home
/
aqcert
/
public_html
/
admin
/
tinymce
/
tests
/
manual
/
/home/aqcert/public_html/admin/tinymce/tests/manual
mkdir
upload
Name
Size
Mode
Actions
css/
-
0755
rm
img/
-
0755
rm
accessibility.html
2995
0644
edit
dl
rm
caretwalker.html
5133
0644
edit
dl
rm
classic.html
9252
0644
edit
dl
rm
commands.html
9423
0644
edit
dl
rm
content-editable-false.html
8159
0644
edit
dl
rm
custom_theme.html
9299
0644
edit
dl
rm
development.html
7872
0644
edit
dl
rm
dirty.html
1543
0644
edit
dl
rm
dragdrop.html
2665
0644
edit
dl
rm
focus.html
4509
0644
edit
dl
rm
gecko_caret.html
3429
0644
edit
dl
rm
icons.html
8140
0644
edit
dl
rm
index.html
1799
0644
edit
dl
rm
inline-toolbars.html
4720
0644
edit
dl
rm
inline.html
2109
0644
edit
dl
rm
jquery.html
815
0644
edit
dl
rm
media.html
2990
0644
edit
dl
rm
noneditable.html
2337
0644
edit
dl
rm
notification.html
1958
0644
edit
dl
rm
paste.html
5842
0644
edit
dl
rm
performance.html
6861
0644
edit
dl
rm
removeformat.html
3142
0644
edit
dl
rm
resize.html
8224
0644
edit
dl
rm
skin.html
5250
0644
edit
dl
rm
table-cell-selection.html
2077
0644
edit
dl
rm
table-resize-bars.html
6974
0644
edit
dl
rm
tests.js
671
0644
edit
dl
rm
ui_container.html
1386
0644
edit
dl
rm
visualblocks.html
2354
0644
edit
dl
rm
Edit:
/home/aqcert/public_html/admin/tinymce/tests/manual/gecko_caret.html
(3429B)
<!DOCTYPE html> <html> <head> <title>Gecko caret tests</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script src="../../js/tinymce/tinymce.dev.js"></script> <script> function init() { tinymce.init({ mode: "textareas", plugins: [ "advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker", "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", "save table contextmenu directionality emoticons template paste" ], valid_elements: '*[*]', add_unload_trigger : false, editor_selector : 'editable', content_css: 'css/gecko_caret.css' }); } function reInit10x() { tinymce.execCommand('mceRemoveEditor', false, 'elm3'); for (var i = 0; i < 10; i++) { tinymce.execCommand('mceRemoveEditor', false, 'elm3'); tinymce.execCommand('mceAddEditor', false, 'elm3'); } } init(); </script> </head> <body> <form method="post" action="http://www.tinymce.com/dump.php?example=true"> <div> <h3>Visible editor</h3> <div> <div id="container1"> <textarea id="elm1" name="elm1" rows="7" cols="80" style="width: 80%" class="editable"> <p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table> </textarea> </div> <a href="#" onclick="tinymce.DOM.show('container1');return false;">[Show]</a> <a href="#" onclick="tinymce.DOM.hide('container1');return false;">[Hide]</a> </div> <h3>Invisible editor</h3> <div> <div id="container2" style="display: none"> <textarea id="elm2" name="elm2" rows="7" cols="80" style="width: 80%" class="editable"> <p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table> </textarea> </div> <a href="#" onclick="tinymce.DOM.show('container2');return false;">[Show]</a> <a href="#" onclick="tinymce.DOM.hide('container2');return false;">[Hide]</a> </div> <h3>On demand editor</h3> <div> <div id="container3"> <textarea id="elm3" name="elm3" rows="7" cols="80" style="width: 80%"> <p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table> </textarea> </div> <a href="#" onclick="tinymce.execCommand('mceAddEditor', false, 'elm3');return false;">[Init]</a> <a href="#" onclick="tinymce.DOM.show('container3');return false;">[Show]</a> <a href="#" onclick="tinymce.DOM.hide('container3');return false;">[Hide]</a> <a href="#" onclick="tinymce.execCommand('mceRemoveEditor', false, 'elm3');return false;">[Remove]</a> <a href="#" onclick="reInit10x();return false;">[Re-init 10x]</a> </div> </div> </form> </body> </html>
Save
Gecko caret tests
Visible editor
<p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table>
[Show]
[Hide]
Invisible editor
<p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table>
[Show]
[Hide]
On demand editor
<p> This is some text that can be edited. <b contenteditable="false">This is some text that isn't <em contenteditable="true">editable</em>.....</b> </p> <p> Another paragraph. </p> <table> <tr><td>Cell</td></tr> </table>
[Init]
[Show]
[Hide]
[Remove]
[Re-init 10x]