summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html')
-rw-r--r--testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html b/testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html
new file mode 100644
index 0000000000..a4a24712f4
--- /dev/null
+++ b/testing/web-platform/tests/css/css-writing-modes/crashtests/wm-body-propagation-crash.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<title>Chrome DCHECK failure for non-root &lt;html&gt;</title>
+<link rel="help" href="https://crbug.com/1217946">
+<body></body>
+<script>
+ let non_root = document.createElement("html");
+ document.documentElement.appendChild(non_root);
+ document.body.offsetTop;
+ document.body.style.display = "inline";
+ non_root.style.color = "red";
+</script>