Mypal/testing/web-platform/tests/webstorage/storage_local_setitem_quotaexceedederr.html
2019-03-11 13:26:37 +03:00

32 lines
904 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>WebStorage Test: localStorage - setItem throws QuotaExceededError</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<h1>storage_local_setItem_QUOTA_EXCEEDED_ERR</h1>
<div id="log"></div>
<script>
test(function() {
localStorage.clear();
var index = 0;
var key = "name";
var val = "x".repeat(1024);
assert_throws("QUOTA_EXCEEDED_ERR", function() {
while (true) {
index++;
localStorage.setItem("" + key + index, "" + val + index);
}
});
localStorage.clear();
}, "Throws QuotaExceededError when the quota has been exceeded");
</script>
</body>
</html>