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

Unified Diff: ppapi/tests/test_case.html

Issue 8468017: Fix a small race condition in loading/executing the PPAPI tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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: ppapi/tests/test_case.html
diff --git a/ppapi/tests/test_case.html b/ppapi/tests/test_case.html
index 21adfe4a4de9aefd2e2f75c41a797b5ead018760..e93d748c69e0589290f67a3b0e7ebc66ad97bb5b 100644
--- a/ppapi/tests/test_case.html
+++ b/ppapi/tests/test_case.html
@@ -158,8 +158,8 @@ onload = function() {
obj.setAttribute("testcase", testcase);
obj.setAttribute("protocol", window.location.protocol);
var container = document.getElementById("container");
- container.appendChild(obj);
container.addEventListener("message", handleTestingMessage, true);
+ container.appendChild(obj);
}
}
</script>
« 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