Index: third_party/WebKit/LayoutTests/http/tests/navigation/back-to-dynamic-iframe.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/back-to-dynamic-iframe.html b/third_party/WebKit/LayoutTests/http/tests/navigation/back-to-dynamic-iframe.html |
index 5511fe565db13719f110fa1c67ed1fda97ceae72..991edd8dbdae7556460e30a00c4f59d6f8538bf6 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/navigation/back-to-dynamic-iframe.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/navigation/back-to-dynamic-iframe.html |
@@ -8,11 +8,11 @@ if (window.testRunner) { |
function childLoaded() { |
if (window.sessionStorage.getItem("dynamic-iframe") != null) { |
- setTimeout(function() { |
+ setTimeout(function () { |
Nate Chapin
2017/02/03 00:17:38
The changes in this file look accidental?
ananta
2017/02/03 01:35:14
Yes. Reverted
|
location.assign("resources/go-back.html"); |
}, 0); |
} else { |
- setTimeout(function() { |
+ setTimeout(function () { |
if (window.testRunner) |
testRunner.notifyDone(); |
}, 0); |
@@ -27,7 +27,7 @@ if (window.sessionStorage.getItem("dynamic-iframe") == null) { |
window.sessionStorage.setItem("dynamic-iframe", true); |
i.src = "resources/back-to-dynamic-iframe-iframe.html#FAIL"; |
} else { |
- window.sessionStorage.removeItem("dynamic-iframe"); |
+ window.sessionStorage.removeItem("dynamic-iframe"); |
i.src = "resources/back-to-dynamic-iframe-iframe.html#PASS"; |
} |
</script> |