summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/crashtests/remove-dom-child-change-style.html
blob: 739af63ccb4248df2119b7c48d0d4568e50896cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1494659">
<div id="container" style="container-type:inline-size;">
  <div id="other"></div>
  <div id="foo"></div>
</div>
<script>
  document.body.offsetTop;
  container.style.width = "100px";
  other.style.color = "pink";
  foo.remove();
</script>