summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html')
-rw-r--r--Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html b/Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html
deleted file mode 100644
index 299e4d66a..000000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/should-open-external-schemes.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!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>