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 906193003: shouldBecomeEqual() behaves as shouldBe() if the testing expression returns the expected value Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add regression test Created 5 years, 10 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 65defdd5bdd58b0794755b7e0f76c3ffc8183aa5..f59d35405b8c81655e8ef5eb09c8666adb320f6b 100644
--- a/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
+++ b/LayoutTests/editing/spelling/spellcheck-paste-continuous-disabled.html
@@ -27,14 +27,15 @@ document.execCommand("InsertText", false, 'p');
document.execCommand("InsertText", false, 'p');
document.execCommand("InsertText", false, 'l');
document.execCommand("InsertText", false, 'e');
-shouldBecomeEqual('internals.hasSpellingMarker(document, 0, 2)', 'true', function() {});
-window.getSelection().selectAllChildren(srcNode);
-document.execCommand('Copy');
+shouldBecomeEqual('internals.hasSpellingMarker(document, 0, 2)', 'true', function() {
+ window.getSelection().selectAllChildren(srcNode);
+ document.execCommand('Copy');
-internals.setContinuousSpellCheckingEnabled(false);
+ internals.setContinuousSpellCheckingEnabled(false);
-document.execCommand('Paste');
-shouldBecomeDifferent('internals.hasSpellingMarker(document, 0, 2)', 'true', finishJSTest);
+ document.execCommand('Paste');
+ shouldBecomeDifferent('internals.hasSpellingMarker(document, 0, 2)', 'true', finishJSTest);
+});
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698