Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html

Issue 23534071: Use shouldBecomeEqual in asynchronous spellchecking tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
diff --git a/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html b/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
index 742913af63bd848bd8ebf74d53334272e16d34ad..82108bf0c4e741932151aa331636f23c49addf15 100644
--- a/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
+++ b/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
@@ -13,8 +13,6 @@ description('Test if WebKit does not spellcheck text when pasting text and conti
'To test manually, disable continuous spellcheck, copy the text "zz apple" and paste it to the textarea. ' +
'When "zz" is not marked as misspelled, this test succeeds.');
-jsTestIsAsync = true;
-
// Insert a misspelled word to initialize a spellchecker.
var srcNode = document.getElementById('src');
srcNode.focus();
@@ -30,28 +28,11 @@ shouldBeTrue('internals.hasSpellingMarker(document, 0, 2)');
window.getSelection().selectAllChildren(srcNode);
document.execCommand('Copy');
-internals.settings.setAsynchronousSpellCheckingEnabled(true);
internals.setContinuousSpellCheckingEnabled(false);
document.execCommand('Paste');
+shouldBeFalse('internals.hasSpellingMarker(document, 0, 2)');
-var retryCount = 10;
-var sleepPeriod = 1;
-function verifyMarker() {
- srcNode.focus();
- var hasMarker = internals.hasSpellingMarker(document, 0, 2);
- if (!hasMarker && --retryCount > 0) {
- sleepPeriod *= 2;
- window.setTimeout(verifyMarker, sleepPeriod);
- return;
- }
- if (hasMarker)
- testFailed('The destination node should not have a marker.');
- else
- testPassed('The destination node does not have any markers.');
- finishJSTest();
-}
-window.setTimeout(verifyMarker, sleepPeriod);
</script>
<script src="../../fast/js/resources/js-test-post.js"></script>
</body>

Powered by Google App Engine
This is Rietveld 408576698