diff options
Diffstat (limited to 'layout/base/crashtests/1435015.html')
-rw-r--r-- | layout/base/crashtests/1435015.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layout/base/crashtests/1435015.html b/layout/base/crashtests/1435015.html new file mode 100644 index 0000000000..329aaca22f --- /dev/null +++ b/layout/base/crashtests/1435015.html @@ -0,0 +1,9 @@ +<!doctype html> +<style> + div { display: contents; } +</style> +<math></math> +<script> + let div = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'div'); + document.querySelector('math').appendChild(div); +</script> |