import { Assertions, Pipeline, Step } from '@ephox/agar'; import { Arr } from '@ephox/katamari'; import { TinyLoader } from '@ephox/mcagar'; import { Element, Node } from '@ephox/sugar'; import ModernTheme from 'tinymce/themes/modern/Theme'; import { UnitTest } from '@ephox/bedrock'; UnitTest.asynctest('browser.tinymce.core.init.ContentStylePositionTest', function () { const success = arguments[arguments.length - 2]; const failure = arguments[arguments.length - 1]; ModernTheme(); const contentStyle = '.class {color: blue;}'; TinyLoader.setup(function (editor, onSuccess, onFailure) { Pipeline.async({}, [ Step.sync(function () { const headStuff = editor.getDoc().head.querySelectorAll('link, style'); const linkIndex = Arr.findIndex(headStuff, function (elm) { return Node.name(Element.fromDom(elm)) === 'link'; }).getOrDie('could not find link elemnt'); const styleIndex = Arr.findIndex(headStuff, function (elm) { return elm.innerText === contentStyle; }).getOrDie('could not find content style tag'); Assertions.assertEq('style tag should be after link tag', linkIndex < styleIndex, true); }) ], onSuccess, onFailure); }, { content_style: contentStyle, skin_url: '/project/js/tinymce/skins/lightgray' }, success, failure); });