Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / frame-resize-repaint-contents.html
blob0cc29c5984e391021b815396befb28cdfbf72665
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <script>
4 onload = function() {
5 runAfterLayoutAndPaint(function() {
6 document.getElementById('iframe').style.width = '150px';
7 }, true);
8 };
9 </script>
10 <iframe id="iframe"
11 srcdoc="<div style='width:50px; height:50px; background-color:blue; float:right'></div>"
12 style="width: 100px; height: 100px">
13 </iframe>