blob: 79b0a17dcbcdca5f5d68bab4fdb7b5e2448e71f8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<div id="console"></div>
<script>
localStorage.clear();
localStorage.__proto__.foo = "FAIL: Visible in isolated world.";
sessionStorage.clear();
sessionStorage.__proto__.foo = "FAIL: Visible in isolated world.";
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.evaluateScriptInIsolatedWorld(
1,
"document.getElementById('console').innerHTML = localStorage.foo + ' and ' + sessionStorage.foo");
}
</script>
</body>
</html>