summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html')
-rw-r--r--testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html b/testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html
new file mode 100644
index 0000000000..89bee03a11
--- /dev/null
+++ b/testing/web-platform/tests/css/css-grid/parsing/grid-template-node-not-connected.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=261421">
+<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
+<meta name="assert" content="test should not crash and grid-template for child should be the empty string after disconnecting the element">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+</head>
+<style>
+#child {
+ grid-template: 10px / 10px;
+}
+</style>
+<div>
+ <div id="child"></div>
+</div>
+<script>
+test(() => {
+ let styleDeclaration = window.getComputedStyle(document.getElementById("child"));
+ document.querySelector("body > div:nth-child(1)").textContent = "";
+ assert_equals(styleDeclaration.gridTemplate, "");
+});
+</script>
+</html>