diff options
Diffstat (limited to 'content/test/data')
-rw-r--r-- | content/test/data/english_page.html | 7 | ||||
-rw-r--r-- | content/test/data/infinite_beforeunload.html | 17 | ||||
-rw-r--r-- | content/test/data/infinite_unload.html | 17 |
3 files changed, 0 insertions, 41 deletions
diff --git a/content/test/data/english_page.html b/content/test/data/english_page.html deleted file mode 100644 index 30b0d42..0000000 --- a/content/test/data/english_page.html +++ /dev/null @@ -1,7 +0,0 @@ -<html> -<head><title>This page is in English</title></head> -<body> -No joke! This is a page written in English. Awesome don't you think? -It has to be more than 100 bytes long for the CLD to detect the language correctly. -</body> -</html> diff --git a/content/test/data/infinite_beforeunload.html b/content/test/data/infinite_beforeunload.html deleted file mode 100644 index 5a3e017..0000000 --- a/content/test/data/infinite_beforeunload.html +++ /dev/null @@ -1,17 +0,0 @@ -<html> -<head> - <title>Infinite beforeunload</title> -</head> - -<body> -<script> - window.onbeforeunload = function(e) { - while(true){} - } -</script> - -Infinite beforeunload handler. - -</body> - -</html> diff --git a/content/test/data/infinite_unload.html b/content/test/data/infinite_unload.html deleted file mode 100644 index 742df08..0000000 --- a/content/test/data/infinite_unload.html +++ /dev/null @@ -1,17 +0,0 @@ -<html> -<head> - <title>Infinite unload</title> -</head> - -<body> -<script> - window.onunload = function(e) { - while(true){} - } -</script> - -Infinite unload handler. - -</body> - -</html> |