| Index: chrome/test/data/extensions/api_test/input_ime/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/input_ime/background.js b/chrome/test/data/extensions/api_test/input_ime/background.js
|
| index b82f6d08d91b9571172e58c50eec5f6924425fa7..383d3347aaa4755785aea2e3e9796db1786c1c0d 100644
|
| --- a/chrome/test/data/extensions/api_test/input_ime/background.js
|
| +++ b/chrome/test/data/extensions/api_test/input_ime/background.js
|
| @@ -33,19 +33,20 @@ function commitTextTest() {
|
| }
|
|
|
|
|
| -function setCandidateWindowPropertiesTest() {
|
| - chrome.input.ime.setCandidateWindowProperties({
|
| - "engineID": "test",
|
| - "properties": {
|
| - "visible": true,
|
| - "cursorVisible": false,
|
| - "vertical": true,
|
| - "pageSize": 6,
|
| - "auxiliaryText": "notes",
|
| - "auxiliaryTextVisible": true
|
| - }
|
| - }, chrome.test.callbackPass());
|
| -}
|
| +// Disabled: crbug.com/641425.
|
| +// function setCandidateWindowPropertiesTest() {
|
| +// chrome.input.ime.setCandidateWindowProperties({
|
| +// "engineID": "test",
|
| +// "properties": {
|
| +// "visible": true,
|
| +// "cursorVisible": false,
|
| +// "vertical": true,
|
| +// "pageSize": 6,
|
| +// "auxiliaryText": "notes",
|
| +// "auxiliaryTextVisible": true
|
| +// }
|
| +// }, chrome.test.callbackPass());
|
| +// }
|
|
|
|
|
| function setCandidatesTest() {
|
| @@ -113,17 +114,24 @@ function setCursorPositionTest() {
|
| // }, chrome.test.callbackPass());
|
| // }
|
|
|
| -function deleteSurroundingText() {
|
| - chrome.input.ime.deleteSurroundingText({
|
| - "engineID": "test",
|
| - "contextID": 1,
|
| - "offset": -1,
|
| - "length": 1
|
| - }, chrome.test.callbackPass());
|
| -}
|
| +// Disabled: crbug.com/641425.
|
| +// function deleteSurroundingText() {
|
| +// chrome.input.ime.deleteSurroundingText({
|
| +// "engineID": "test",
|
| +// "contextID": 1,
|
| +// "offset": -1,
|
| +// "length": 1
|
| +// }, chrome.test.callbackPass());
|
| +// }
|
|
|
| -chrome.test.runTests([setCompositionTest, clearCompositionTest,
|
| - commitTextTest, setCandidateWindowPropertiesTest,
|
| - setCandidatesTest, setCursorPositionTest,
|
| - /*setMenuItemsTest, updateMenuItemsTest, */
|
| - deleteSurroundingText]);
|
| +chrome.test.runTests([
|
| + setCompositionTest,
|
| + clearCompositionTest,
|
| + commitTextTest,
|
| + // setCandidateWindowPropertiesTest,
|
| + setCandidatesTest,
|
| + setCursorPositionTest,
|
| + // setMenuItemsTest,
|
| + // updateMenuItemsTest,
|
| + // deleteSurroundingText,
|
| +]);
|
|
|