Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / elements / styles / resources / styles-source-lines-inline-iframe.html
1 <html>
2 <head>
3 <style>
4 .bar {
5     color: red;
6 }
7 </style>
8 <script>
9 function iframeOnload()
10 {
11     window.parent.iframeLoaded = true;
12 }
13 </script>
14 </head>
15
16 <body onload="iframeOnload()">
17 <div id="bar" class="bar">Bar</div>
18 </body>
19
20 </html>