Revision control

Copy as Markdown

<!DOCTYPE html>
<html>
<body>
<h1>Storage Start</h1>
<script type="text/javascript">
sessionStorage.setItem('focusSessionTest', 'caterpillar');
localStorage.setItem('focusLocalTest', 'butterfly');
document.write('<p>Values written to storage</p>');
</script>
</body>
</html>