-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
306 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor' ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles. | ||
|
||
### Expected result | ||
|
||
* There are hover styles (e.g. background became darker). | ||
|
||
### Unexpected result | ||
|
||
* There aren't hover styles. | ||
|
||
### Notes: | ||
|
||
* Moono Lisa does not provide hover styles for on buttons. | ||
|
||
2. Check if clicking on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Clicked button has active state (e.g background became lighter). | ||
|
||
### Unexpected result | ||
|
||
* Clicked button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor', { | ||
skin: 'kama' | ||
} ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea', | ||
skin: 'kama' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles. | ||
|
||
### Expected result | ||
|
||
* There are hover styles (e.g. background became darker). | ||
|
||
### Unexpected result | ||
|
||
* There aren't hover styles. | ||
|
||
### Notes: | ||
|
||
* Repeat the procedure for both on and off buttons (e.g. with "Bold" before and after toggling on). | ||
|
||
2. Check if clicking on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Clicked button has active state (e.g background became lighter). | ||
|
||
### Unexpected result | ||
|
||
* Clicked button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor', { | ||
skin: 'moono' | ||
} ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea', | ||
skin: 'moono' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles. | ||
|
||
### Expected result | ||
|
||
* There are hover styles (e.g. background became darker). | ||
|
||
### Unexpected result | ||
|
||
* There aren't hover styles. | ||
|
||
### Notes: | ||
|
||
* Repeat the procedure for both on and off buttons (e.g. with "Bold" before and after toggling on). | ||
|
||
2. Check if clicking on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Clicked button has active state (e.g background became lighter). | ||
|
||
### Unexpected result | ||
|
||
* Clicked button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor' ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles by long tapping on them and releasing the finger. | ||
|
||
### Expected result | ||
|
||
* On Android: there are hover styles **during** the tap (e.g. background becomes darker). | ||
* On iOS: hover styles can be absent during the tap. | ||
* There aren't any hover styles **after** releasing the finger. | ||
|
||
### Unexpected result | ||
|
||
* On Android: there aren't any hover styles **during** the tap. | ||
* There are hover style (e.g. background became darker) **after** releasing the finger. | ||
|
||
### Notes: | ||
|
||
* Moono Lisa does not provide hover styles for on buttons. | ||
* On iOS long tap can also focus the editor. | ||
|
||
2. Check if taping on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Tapped button has active state (e.g background became lighter or the button seems "pressed"). | ||
|
||
### Unexpected result | ||
|
||
* Tapped button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor', { | ||
skin: 'kama' | ||
} ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea', | ||
skin: 'kama' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles by long tapping on them and releasing the finger. | ||
|
||
### Expected result | ||
|
||
* On Android: there are hover styles **during** the tap (e.g. background becomes darker). | ||
* On iOS: hover styles can be absent during the tap. | ||
* There aren't any hover styles **after** releasing the finger. | ||
|
||
### Unexpected result | ||
|
||
* On Android: there aren't any hover styles **during** the tap. | ||
* There are hover style (e.g. background became darker) **after** releasing the finger. | ||
|
||
### Notes: | ||
|
||
* Repeat the procedure for both on and off buttons (e.g. with "Bold" before and after toggling on). | ||
* On iOS long tap can also focus the editor. | ||
|
||
2. Check if taping on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Tapped button has active state (e.g background became lighter or the button seems "pressed"). | ||
|
||
### Unexpected result | ||
|
||
* Tapped button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<h2><code>Iframe</code>-based editor</h2> | ||
<div id="iframe-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<h2><code>Div</code>-based editor</h2> | ||
<div id="div-editor" contenteditable="true"> | ||
<p>Foo Bar</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'iframe-editor', { | ||
skin: 'moono' | ||
} ); | ||
CKEDITOR.replace( 'div-editor', { | ||
extraPlugins: 'divarea', | ||
skin: 'moono' | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@bender-tags: 4.16.1, 4611, bug | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, stylescombo, language | ||
|
||
## Procedure | ||
|
||
1. Check if buttons have hover styles by long tapping on them and releasing the finger. | ||
|
||
### Expected result | ||
|
||
* On Android: there are hover styles **during** the tap (e.g. background becomes darker). | ||
* On iOS: hover styles can be absent during the tap. | ||
* There aren't any hover styles **after** releasing the finger. | ||
|
||
### Unexpected result | ||
|
||
* On Android: there aren't any hover styles **during** the tap. | ||
* There are hover style (e.g. background became darker) **after** releasing the finger. | ||
|
||
### Notes: | ||
|
||
* Repeat the procedure for both on and off buttons (e.g. with "Bold" before and after toggling on). | ||
* On iOS long tap can also focus the editor. | ||
|
||
2. Check if taping on buttons activate their active state. | ||
|
||
### Expected result | ||
|
||
* Tapped button has active state (e.g background became lighter or the button seems "pressed"). | ||
|
||
### Unexpected result | ||
|
||
* Tapped button does not have active state. | ||
3. Repeat the procedure for the second editor. | ||
4. Repeat the procedure for rich combos. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.