summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/localStorage.html
blob: a4e395f487e696d4e410282467d3d08a9eeb438d (plain)
1
2
3
4
5
6
7
8
9
<html>
<head><title>Original Title</title></head>
<body>
<script type="text/javascript">
document.title = localStorage.getItem('title');
localStorage.setItem('title', 'New Title');
</script>
</body>
</html>