public function EventsTest::provideKeyboardEventsModifiers in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/driver-testsuite/tests/Js/EventsTest.php \Behat\Mink\Tests\Driver\Js\EventsTest::provideKeyboardEventsModifiers()
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Js/ EventsTest.php, line 111
Class
Namespace
Behat\Mink\Tests\Driver\JsCode
public function provideKeyboardEventsModifiers() {
return array(
'none' => array(
null,
'0 / 0 / 0 / 0',
),
'alt' => array(
'alt',
'1 / 0 / 0 / 0',
),
// jQuery considers ctrl as being a metaKey in the normalized event
'ctrl' => array(
'ctrl',
'0 / 1 / 0 / 1',
),
'shift' => array(
'shift',
'0 / 0 / 1 / 0',
),
'meta' => array(
'meta',
'0 / 0 / 0 / 1',
),
);
}