Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / inline-relative-positioned.html
1 <script src="resources/repaint.js"></script>
2 <body onload="runRepaintTest()">
3 <span style="position: relative; top: 80px;">
4     <div id="target" style="display: inline-block; width: 100px; height: 100px; overflow: hidden; font-family: ahem; font-size: 100px; background: red; color: green;">p</div>
5 </span>
6 <script>
7     function repaintTest()
8     {
9         document.getElementById("target").firstChild.data = "a";
10     }
11 </script>