diff options
Diffstat (limited to 'layout/style/crashtests/1396041.html')
-rw-r--r-- | layout/style/crashtests/1396041.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layout/style/crashtests/1396041.html b/layout/style/crashtests/1396041.html new file mode 100644 index 0000000000..4bca993486 --- /dev/null +++ b/layout/style/crashtests/1396041.html @@ -0,0 +1,9 @@ +<script> +document.documentElement.appendChild(document.createElement("meter")) +a = document.createElement("textarea") +document.documentElement.appendChild(a) +b = document.createElement("style") +b.appendChild(document.createTextNode("*::-moz-meter-bar { text-indent: calc(50%); scroll-behavior: smooth; transition-duration: 250ms; }")) +a.select() +document.head.appendChild(b) +</script> |