Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / block-layout-inline-children-replaced.html
1 <head>
2 <title>This is a test for regression against https://bugs.webkit.org/show_bug.cgi?id=40142</title>
3 <style>
4 .target {
5     width: 400px;
6     height: 150px;
7     text-align: center;
8     border: 1px solid #ddd;
9 }
10 </style>
11 </head>
12
13 <body style="margin: 0;" onload="runRepaintTest()">
14     <script>
15         function repaintTest()
16         {
17             document.getElementById("target").innerHTML +=
18                 '<img style="height: 100px;" src="resources/apple.jpg" >';
19         }
20     </script>
21
22     <script src="resources/repaint.js"></script>
23
24     <p>This is a test for regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=40142">https://bugs.webkit.org/show_bug.cgi?id=40142</a></p>
25
26     <div>
27         <div class="target" id="target"></div>
28     </div>
29 </body>