mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 18:15:19 +00:00
b4f4eeb4b6
ve/ce/SurfaceObserver.js * Do not setTimeout if frequency === null demos/ve/eventLogger.html * Standalone event logging script ve/test/ce/imetests/*.js * JSON event logs for various tests/browsers/IMEs ve/test/ce/ve.ce.test.js * Add an IME test VisualEditor.hooks.php * Add test files Change-Id: I50e89d5a289f3fcb4fe2a6835a2ec96fb497242c
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable ime tests.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
//QUnit.module( 've.ce' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.ce.imetests = [];
|
|
|
|
ve.ce.imetestsBroken = {
|
|
'backspace-chromium-ubuntu-none': true,
|
|
'backspace-firefox-ubuntu-none': true,
|
|
'backspace-ie-win-none': true,
|
|
'input-chrome-win-chinese-traditional-handwriting': true,
|
|
'input-chromium-ubuntu-ibus-chinese-cantonese': true,
|
|
'input-chromium-ubuntu-ibus-japanese-anthy--hiraganaonly': true,
|
|
'input-chromium-ubuntu-ibus-korean-korean': true,
|
|
'input-chromium-ubuntu-ibus-malayalam-swanalekha': true,
|
|
'input-firefox-ubuntu-ibus-chinese-cantonese': true,
|
|
'input-firefox-ubuntu-ibus-japanese-anthy--hiraganaonly': true,
|
|
'input-firefox-ubuntu-ibus-korean-korean': true,
|
|
'input-firefox-ubuntu-ibus-malayalam-swanalekha': true,
|
|
'input-firefox-win-chinese-traditional-handwriting': true,
|
|
'input-ie-win-korean': true,
|
|
'input-ie-win-chinese-traditional-handwriting': true,
|
|
'leftarrow-chromium-ubuntu-none': true,
|
|
'leftarrow-firefox-ubuntu-none': true,
|
|
'leftarrow-ie-win-none': true
|
|
};
|