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

Unified Diff: LayoutTests/editing/spelling/spellcheck-paste-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-disabled.html
diff --git a/LayoutTests/editing/spelling/spellcheck-paste-disabled.html b/LayoutTests/editing/spelling/spellcheck-paste-disabled.html
index 7d53c4cc8e38316c0bc940829e652ee1e14bca9a..857f37d5e2ba61b38d1028dde8539ceae31dffcf 100644
--- a/LayoutTests/editing/spelling/spellcheck-paste-disabled.html
+++ b/LayoutTests/editing/spelling/spellcheck-paste-disabled.html
@@ -28,15 +28,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');
-
-var dstNode = document.getElementById('dst');
-dstNode.focus();
-document.execCommand('Paste');
-shouldBecomeDifferent('internals.hasSpellingMarker(document, 0, 2)', 'true', finishJSTest);
+shouldBecomeEqual('internals.hasSpellingMarker(document, 0, 2)', 'true', function(){
+ window.getSelection().selectAllChildren(srcNode);
+ document.execCommand('Copy');
+ var dstNode = document.getElementById('dst');
+ dstNode.focus();
+ document.execCommand('Paste');
+ shouldBecomeDifferent('internals.hasSpellingMarker(document, 0, 2)', 'true', finishJSTest);
+});
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698