mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-27 13:28:28 +00:00
20 lines
357 B
HTML
20 lines
357 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
Bug 1171903 - Storage Inspector endless scrolling
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Storage inspector endless scrolling test</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript;version=1.8">
|
|
"use strict";
|
|
|
|
for (let i = 1; i < 151; i++) {
|
|
localStorage.setItem(`item-${i}`, `value-${i}`);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|