Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / shadow / normalize-progress-element-crash.html
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
4 onload = function() {
5     thirdProgress.appendChild(firstProgress);
6     document.normalize();
7 }
8 </script>
9 <details>
10   <summary>
11     <progress id="firstProgress">
12       <progress></progress>
13     </progress>
14   </summary>
15   <progress id="thirdProgress"></progress>
16 </details>
17 <script>
18 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.");
19 </script>