Files
ladybird/Tests/LibWeb/Text/data/local-storage-iframe.html
Tim Ledbetter 121783b45e Tests: Use unique local storage key in local storage test
This ensures it is not possible for tests to interfere with each other.
2026-01-15 09:39:00 +01:00

7 lines
191 B
HTML

<!DOCTYPE html>
<script>
const key = new URLSearchParams(location.search).get("key");
localStorage.setItem(key, "barbaz");
parent.postMessage("local storage set", "*");
</script>