summaryrefslogtreecommitdiffstats
path: root/intl/uconv/crashtests/omt-non-utf-8-jsurl.html
diff options
context:
space:
mode:
Diffstat (limited to 'intl/uconv/crashtests/omt-non-utf-8-jsurl.html')
-rw-r--r--intl/uconv/crashtests/omt-non-utf-8-jsurl.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/intl/uconv/crashtests/omt-non-utf-8-jsurl.html b/intl/uconv/crashtests/omt-non-utf-8-jsurl.html
new file mode 100644
index 0000000000..033e38a280
--- /dev/null
+++ b/intl/uconv/crashtests/omt-non-utf-8-jsurl.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html class=reftest-wait>
+<head>
+ <meta charset=iso-8859-1><!-- must be non-UTF-8 -->
+ <title>Test for off the main thread non-UTF-8 javascript: URL</title>
+</head>
+<body>
+<script>
+new Worker("javascript:foo").onerror = () => {
+ document.documentElement.className = "";
+};
+</script>
+</body>
+</html>