upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / fast / lists / list-style-type-dynamic-change.html
1 <html>
2 <head>
3     <title></title>
4 </head>
5 <body>
6     <p>
7         Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12899">http://bugs.webkit.org/show_bug.cgi?id=12899</a>
8         Ordered lists not updating dynamically with new styles</i>.
9     </p>
10     <p>
11         The items in the following list should be numbered 1, 2, 3.
12     </p>
13     <ol id="list" style="list-style-type: lower-alpha;">
14         <li>First item</li>
15         <li>Second item</li>
16         <li>Third item</li>
17     </ol>
18     <script>
19         document.body.offsetTop;
20         document.getElementById("list").style.listStyleType = "decimal";
21     </script>
22     <script src="resources/dump-list.js"></script>
23     <script>
24         if (window.layoutTestController) {
25             layoutTestController.dumpAsText();
26             filterListsWithReplacement([document.getElementById("list")]);
27         }
28     </script>
29 </body>
30 </html>