summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/992333-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/style/crashtests/992333-1.html')
-rw-r--r--layout/style/crashtests/992333-1.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/style/crashtests/992333-1.html b/layout/style/crashtests/992333-1.html
new file mode 100644
index 0000000000..86a1d57d73
--- /dev/null
+++ b/layout/style/crashtests/992333-1.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<style>
+p { --variable: value; transition: 1s --variable; }
+</style>
+<p>Hello.</p>
+<script>
+window.onload = function() {
+ document.querySelector("p").style.color = "green";
+};
+</script>