summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-flexbox-outline.html
blob: 39cf81688e0a294d542cf18a72ec1e808d7bc546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<title>Test `contain: strict` to Flexbox does not crash</title>
<link rel="help" href="https://www.w3.org/TR/css-contain-1/#contain-property">
<link rel="author" href="mailto:kojii@chromium.org">
<style>
body {
  contain: strict;
  display: flex;
}
html {
  outline: 1px auto;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="target"></div>
<div id="log"></div>
<script>
test(() => {
  document.body.offsetTop;
  target.style.width = '100px';
  document.body.offsetTop;
}, "Pass if no crash");
</script>