Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / block-layout-inline-children-replaced.html
blob914f9142188bbd7d41903dfbc57c3127d4730ddc
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;
10 </style>
11 </head>
13 <body style="margin: 0;" onload="runRepaintTest()">
14 <script src="resources/text-based-repaint.js"></script>
15 <script>
16 window.testIsAsync = true;
18 function repaintTest()
20 var target = document.getElementById("target");
21 target.innerHTML +=
22 '<img style="height: 100px;" src="resources/apple.jpg" >';
23 target.firstChild.addEventListener("load", finishRepaintTest, false);
25 </script>
28 <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>
30 <div>
31 <div class="target" id="target"></div>
32 </div>
33 </body>