chromium/third_party/blink/web_tests/http/tests/security/isolatedWorld/top-properties.html

<!DOCTYPE html>
<html>
<body>
<div id="console"></div>
<script>
top.foo = "FAIL: Visible in isolated world.";
if (window.testRunner) {
  testRunner.dumpAsText();
  testRunner.evaluateScriptInIsolatedWorld(
    1,
    "document.getElementById('console').innerHTML = top.foo");
}
</script>
</body>
</html>