Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / list-marker-2.html
1 <html>
2 <head>
3     <script src="resources/repaint.js" type="text/javascript"></script>
4     <script type="text/javascript">
5        function repaintTest()
6        {
7            var target = document.getElementById('target');
8            target.style.height = '100px';
9        }
10     </script>
11 </head>
12 <body onload="runRepaintTest();">
13     <p>
14         This is a test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13209">http://bugs.webkit.org/show_bug.cgi?id=13209</a>
15         REGRESSION (r18756-18765): Incomplete list marker repaint when resizing list item</i>.
16     </p>
17     <p>
18         There should be only one bullet, at the bottom left of the rectangle.
19     </p>
20     <ul>
21         <li><img id="target" style="width: 100px; height: 50px;"></li>
22     </ul>
23 </body>