Upstream version 9.37.195.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / Element / normalize-crash2.html
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <div name="testDiv" id="testDiv"></div>
4 <script>
5 description("This test passes if it does not crash.");
6
7 var testDiv = document.getElementById("testDiv");
8 testDiv.attributes[0].appendChild(new Text("test"));
9 testDiv.cloneNode(false);
10 gc();
11 testDiv.normalize();
12 </script>