summaryrefslogtreecommitdiffstats
path: root/dom/smil/crashtests/1535388-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/smil/crashtests/1535388-1.html')
-rw-r--r--dom/smil/crashtests/1535388-1.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/dom/smil/crashtests/1535388-1.html b/dom/smil/crashtests/1535388-1.html
new file mode 100644
index 0000000000..cdfaba4d90
--- /dev/null
+++ b/dom/smil/crashtests/1535388-1.html
@@ -0,0 +1,18 @@
+<html>
+<head>
+<script>
+function start () {
+ document.location.assign('abc')
+ SpecialPowers.forceGC()
+ SpecialPowers.forceCC()
+ const XHR = new XMLHttpRequest()
+ XHR.open('GET', 'data:text/html,1', false)
+ XHR.send()
+}
+window.addEventListener('load', start)
+</script>
+</head>
+<body>
+<svg></svg>
+</body>
+</html>