Files
brave-core/test/data/navigate-to-site.html
T
2024-04-18 16:39:19 -07:00

17 lines
364 B
HTML

<html>
<head>
<script>
function redirectToDestination() {
const urlParams = new URLSearchParams(window.location.search);
const url = urlParams.get('url');
window.location = atob(url.replace(/\-/g, '+').replace(/\_/g, '/'));
}
</script>
</head>
<body>
<p>Waiting for JS redirect...</p>
<script>
setTimeout(redirectToDestination, 100);
</script>
</html>