OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
tinymce
/
tinymce
/
src
/
core
/
test
/
ts
/
browser
/
keyboard
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/20/2020 06:14:55 AM
rwxr-xr-x
📄
ArrowKeysAnchorTest.ts
9.31 KB
02/20/2020 06:14:22 AM
rw-r--r--
📄
ArrowKeysContentEndpointBrModeTest.ts
2.83 KB
02/20/2020 06:14:21 AM
rw-r--r--
📄
ArrowKeysContentEndpointTest.ts
4.06 KB
02/20/2020 06:14:23 AM
rw-r--r--
📄
ArrowKeysInlineBoundariesTest.ts
14.39 KB
02/20/2020 06:14:23 AM
rw-r--r--
📄
ArrowKeysTableTest.ts
11.51 KB
02/20/2020 06:14:24 AM
rw-r--r--
📄
BoundaryCaretTest.ts
2.94 KB
02/20/2020 06:14:24 AM
rw-r--r--
📄
BoundaryLocationTest.ts
12.35 KB
02/20/2020 06:14:25 AM
rw-r--r--
📄
EnterKeyAnchorTest.ts
6.66 KB
02/20/2020 06:14:25 AM
rw-r--r--
📄
EnterKeyCeFalseTest.ts
2.61 KB
02/20/2020 06:14:26 AM
rw-r--r--
📄
EnterKeyHrTest.ts
2.9 KB
02/20/2020 06:14:26 AM
rw-r--r--
📄
EnterKeyInlineTest.ts
1021 bytes
02/20/2020 06:14:27 AM
rw-r--r--
📄
EnterKeyListsTest.ts
16.34 KB
02/20/2020 06:14:27 AM
rw-r--r--
📄
EnterKeyTest.ts
30.93 KB
02/20/2020 06:14:28 AM
rw-r--r--
📄
HomeEndKeysTest.ts
4.5 KB
02/20/2020 06:14:28 AM
rw-r--r--
📄
InlineUtilsTest.ts
7.64 KB
02/20/2020 06:14:30 AM
rw-r--r--
📄
InsertKeysBrModeTest.ts
5.65 KB
02/20/2020 06:14:30 AM
rw-r--r--
📄
InsertKeysTest.ts
10.22 KB
02/20/2020 06:14:31 AM
rw-r--r--
📄
SpaceKeyTest.ts
3.52 KB
02/20/2020 06:14:31 AM
rw-r--r--
📄
TableNavigationTest.ts
4.84 KB
02/20/2020 06:14:31 AM
rw-r--r--
📄
TypeTextAtCefTest.ts
2.37 KB
02/20/2020 06:14:32 AM
rw-r--r--
Editing: EnterKeyAnchorTest.ts
Close
import { ApproxStructure, GeneralSteps, Keys, Logger, Pipeline } from '@ephox/agar'; import { TinyActions, TinyApis, TinyLoader } from '@ephox/mcagar'; import Env from 'tinymce/core/api/Env'; import Zwsp from 'tinymce/core/text/Zwsp'; import Theme from 'tinymce/themes/silver/Theme'; import { UnitTest } from '@ephox/bedrock'; UnitTest.asynctest('browser.tinymce.core.keyboard.EnterKeyAnchorTest', (success, failure) => { Theme(); const sSetup = function (tinyApis, html, elementPath, offset) { return GeneralSteps.sequence([ tinyApis.sSetContent(html), tinyApis.sSetCursor(elementPath, offset) ]); }; const sEnterKey = function (tinyActions) { return tinyActions.sContentKeystroke(Keys.enter(), {}); }; const addGeckoBr = function (s, str, children) { if (Env.gecko) { return [].concat(children).concat(s.element('br', { attrs: { 'data-mce-bogus': str.is('1') } })); } else { return children; } }; const sTestEnterAtStartOfAnchorZwsp = function (tinyApis, tinyActions) { return Logger.t( 'sTestEnterAtStartOfAnchorZwsp', GeneralSteps.sequence([ sSetup(tinyApis, '<p><a href="#">' + Zwsp.ZWSP + 'a</a></p>', [0, 0, 0], 1), sEnterKey(tinyActions), tinyApis.sAssertContentStructure( ApproxStructure.build(function (s, str, arr) { return s.element('body', { children: [ s.element('p', { children: [ s.element('br', { attrs: { 'data-mce-bogus': str.is('1') } }) ] }), s.element('p', { children: addGeckoBr(s, str, [ s.element('a', { attrs: { 'data-mce-href': str.is('#'), 'href': str.is('#') }, children: [ s.text(str.is(Zwsp.ZWSP + 'a')) ] }) ]) }) ] }); }) ), tinyApis.sAssertSelection([1, 0, 0], 1, [1, 0, 0], 1) ]) ); }; const sTestEnterAtEndOfAnchorZwsp = function (tinyApis, tinyActions) { return Logger.t( 'sTestEnterAtEndOfAnchorZwsp', GeneralSteps.sequence([ sSetup(tinyApis, '<p><a href="#">a' + Zwsp.ZWSP + '</a></p>', [0, 0, 0], 2), sEnterKey(tinyActions), tinyApis.sAssertContentStructure( ApproxStructure.build(function (s, str, arr) { return s.element('body', { children: [ s.element('p', { children: addGeckoBr(s, str, [ s.element('a', { attrs: { 'data-mce-href': str.is('#'), 'href': str.is('#') }, children: [ s.text(str.is('a' + Zwsp.ZWSP)) ] }) ]) }), s.element('p', { children: [ s.element('br', { attrs: { 'data-mce-bogus': str.is('1') } }) ] }) ] }); }) ), tinyApis.sAssertSelection([1], 0, [1], 0) ]) ); }; const sTestEnterAtStartOfAnchorZwspWithAdjacentContent = function (tinyApis, tinyActions) { return Logger.t( 'sTestEnterAtStartOfAnchorZwspWithAdjacentContent', GeneralSteps.sequence([ sSetup(tinyApis, '<p>a<a href="#">' + Zwsp.ZWSP + 'b</a>c</p>', [0, 1, 0], 1), sEnterKey(tinyActions), tinyApis.sAssertContentStructure( ApproxStructure.build(function (s, str, arr) { return s.element('body', { children: [ s.element('p', { children: [ s.text(str.is('a')), s.element('a', { attrs: { 'data-mce-href': str.is('#'), 'href': str.is('#') } }) ] }), s.element('p', { children: [ s.element('a', { attrs: { 'data-mce-href': str.is('#'), 'href': str.is('#') }, children: [ s.text(str.is(Zwsp.ZWSP + 'b')) ] }), s.text(str.is('c')) ] }) ] }); }) ), tinyApis.sAssertSelection([1, 0, 0], 1, [1, 0, 0], 1) ]) ); }; const sTestEnterAtEndOfAnchorZwspWithAdjacentContent = function (tinyApis, tinyActions) { return Logger.t( 'sTestEnterAtStartOfAnchorZwspWithAdjacentContent', GeneralSteps.sequence([ sSetup(tinyApis, '<p>a<a href="#">b' + Zwsp.ZWSP + '</a>c</p>', [0, 1, 0], 1), sEnterKey(tinyActions), tinyApis.sAssertContentStructure( ApproxStructure.build(function (s, str, arr) { return s.element('body', { children: [ s.element('p', { children: [ s.text(str.is('a')), s.element('a', { attrs: { 'data-mce-href': str.is('#'), 'href': str.is('#') }, children: [ s.text(str.is('b')) ] }) ] }), s.element('p', { children: [ s.text(str.is('c')) ] }) ] }); }) ), tinyApis.sAssertSelection([1, 0], 0, [1, 0], 0) ]) ); }; TinyLoader.setup(function (editor, onSuccess, onFailure) { const tinyApis = TinyApis(editor); const tinyActions = TinyActions(editor); Pipeline.async({}, [ tinyApis.sFocus, sTestEnterAtStartOfAnchorZwsp(tinyApis, tinyActions), sTestEnterAtEndOfAnchorZwsp(tinyApis, tinyActions), sTestEnterAtStartOfAnchorZwspWithAdjacentContent(tinyApis, tinyActions), sTestEnterAtEndOfAnchorZwspWithAdjacentContent(tinyApis, tinyActions) ], onSuccess, onFailure); }, { base_url: '/project/tinymce/js/tinymce' }, success, failure); });