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

Unified Diff: LayoutTests/http/tests/security/isolatedWorld/world-reuse.html

Issue 13954010: Eliminate "temporary" and "uninitialized" isolated worlds (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/http/tests/security/isolatedWorld/world-reuse.html
diff --git a/LayoutTests/http/tests/security/isolatedWorld/world-reuse.html b/LayoutTests/http/tests/security/isolatedWorld/world-reuse.html
index b837a2b5cd7cadfba4d68212c1f0ab187eeb0a21..03db5478f1248b14cf9ea8f91f382ae3f54c01f4 100644
--- a/LayoutTests/http/tests/security/isolatedWorld/world-reuse.html
+++ b/LayoutTests/http/tests/security/isolatedWorld/world-reuse.html
@@ -6,12 +6,6 @@ if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
- // World id 0 is never saved, so this should print 'undefined'.
- testRunner.evaluateScriptInIsolatedWorld(0, "var foo = 'foo';");
- testRunner.evaluateScriptInIsolatedWorld(0,
- "document.body.appendChild(document.createTextNode('Expecting undefined: ' + window.foo));" +
- "document.body.appendChild(document.createElement('br'));");
-
// Since these two run in the same world, this should print 'bar'.
testRunner.evaluateScriptInIsolatedWorld(1, "var bar = 'bar';");
testRunner.evaluateScriptInIsolatedWorld(1,

Powered by Google App Engine
This is Rietveld 408576698