chromium/third_party/blink/web_tests/http/tests/security/isolatedWorld/storage-prototype.html

<!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>