summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/shadow/normalize-progress-element-crash.html
blob: aa7ff1bf960f239439f7a4cfd20434bb3f4f5e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<script src="../../../resources/js-test.js"></script>
<script>
onload = function() {
    thirdProgress.appendChild(firstProgress);
    document.normalize();
}
</script>
<details>
  <summary>
    <progress id="firstProgress">
      <progress></progress>
    </progress>
  </summary>
  <progress id="thirdProgress"></progress>
</details>
<script>
description("crbug.com/413207: test if distribution is solved when normalize. This test passes if run the test with debug binary and no assertion error occurs.");
</script>