瀏覽代碼

Tests: Added RTL manual test.

Aleksander Nowodzinski 6 年之前
父節點
當前提交
3cdc6bc8cd

文件差異過大導致無法顯示
+ 8 - 0
packages/ckeditor5-code-block/tests/manual/rtl.html


+ 24 - 0
packages/ckeditor5-code-block/tests/manual/rtl.js

@@ -0,0 +1,24 @@
+/**
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
+ */
+
+/* global document, console, window */
+
+import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
+import CodeBlock from '../../src/codeblock';
+import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
+
+ClassicEditor
+	.create( document.querySelector( '#editor' ), {
+		language: 'ar',
+		plugins: [ Code, CodeBlock, ArticlePluginSet ],
+		toolbar: [ 'heading', '|', 'bold', 'italic', 'code', 'blockQuote', 'codeBlock', 'undo', 'redo', 'insertTable' ]
+	} )
+	.then( editor => {
+		window.editor = editor;
+	} )
+	.catch( err => {
+		console.error( err.stack );
+	} );

+ 5 - 0
packages/ckeditor5-code-block/tests/manual/rtl.md

@@ -0,0 +1,5 @@
+## Code blocks and RTL content
+
+1. The code in all blocks should be left aligned.
+2. The code should have a left–to–right direction (so `foo()`, not `()foo`).
+3. The label describing the used language should be in the upper right corner of each block.