2014-04-18 15:33:12 +00:00
|
|
|
@en.wikipedia.beta.wmflabs.org @firefox @login @make_selectable_line @test2.wikipedia.org
|
2013-09-27 17:49:51 +00:00
|
|
|
Feature: VisualEditor Indent, Outdent
|
2013-09-27 16:07:56 +00:00
|
|
|
|
2013-09-27 17:49:51 +00:00
|
|
|
Scenario: Check indentation controls disabled by default
|
2013-09-27 16:07:56 +00:00
|
|
|
Then Decrease indentation should be disabled
|
|
|
|
And Increase indentation should be disabled
|
|
|
|
|
2013-09-27 17:49:51 +00:00
|
|
|
Scenario Outline: check indent and outdent enable and disable
|
|
|
|
When I click <control>
|
|
|
|
Then Decrease indentation should be <initial_state>
|
|
|
|
And Increase indentation should be <initial_state>
|
|
|
|
And I undo <control>
|
|
|
|
And Decrease indentation should be <final_state>
|
|
|
|
And Increase indentation should be <final_state>
|
|
|
|
Examples:
|
|
|
|
| control | initial_state | final_state |
|
|
|
|
| Bullets | enabled | disabled |
|
2013-10-02 15:43:46 +00:00
|
|
|
| Numbering | enabled | disabled |
|