blob: 299e4d66ad26c00f5c6c33cca15c6277e39ca2d8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function navigateToTelURL()
{
window.location.href = "tel:+1 (408) 996-1010";
}
function navigateToTelURLInZeroTimer()
{
window.setTimeout(navigateToTelURL, 0);
}
function navigateToTelURLInNestedZeroTimer()
{
window.setTimeout(navigateToTelURLInZeroTimer, 0);
}
</script>
</head>
</html>