Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / resources / counter-crash-frame-src.html
1
2 <script>
3 function boom() {
4     var p = document.getElementById('p').cloneNode(false);
5     document.getElementById('fig').appendChild(p);
6
7     var count = document.getElementById('count').cloneNode(false);
8     document.getElementById('multi').appendChild(count);
9
10     document.location.reload();
11 }
12 </script>
13 <body onload="boom();">
14     <spacer id='count' style='counter-increment: aaa 1;'>
15         <fig id='fig'>
16     </spacer>
17     <acronym>
18         <spacer style='counter-increment: aaa 1;'></spacer>
19     </acronym>
20     <multicol id='multi'></multicol>
21     <p id='p'></p>
22 </body>