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

Unified Diff: sky/tests/editing/delete_block_contents.sky

Issue 754463003: Fix race condition in test (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/editing/delete_block_contents.sky
diff --git a/sky/tests/editing/delete_block_contents.sky b/sky/tests/editing/delete_block_contents.sky
index 833bcc0f878736bd835d5d97d780af69a634ce7e..9fb308533d9dbf519333c3cb03768fa61c47d592 100644
--- a/sky/tests/editing/delete_block_contents.sky
+++ b/sky/tests/editing/delete_block_contents.sky
@@ -4,8 +4,8 @@
This test verifies that the height of an editable block remains the same after adding block elements and removing them.
<div contenteditable="true" style="border: solid blue" id="test"></div>
<script>
-describe("height of an editable block", function(done) {
- it("remains the same after adding block elements and removing them", function() {
+describe("height of an editable block", function() {
+ it("remains the same after adding block elements and removing them", function(done) {
var elem = document.getElementById("test");
var originalHeight = elem.offsetHeight;
var d = elem.appendChild(document.createElement('div'));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698