Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / fixed-position-transparency-with-overflow.html
blob96ea7cace9c4e0acf3601ba27516e506b3b4d97d
1 <html>
2 <head>
3 <link rel="stylesheet" href="resources/default.css">
4 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 if (window.testRunner)
7 testRunner.dumpAsTextWithPixelResults();
8 function repaintTest()
10 document.getElementById('container').style.opacity = '0.4';
12 </script>
13 </head>
14 <body style="height:2000px;" onload="runRepaintTest()">
15 <!-- You should see 2 rectangles touching on one corner in the output: a green one (top left) and a green one. -->
16 <div id="container" style="top: 200px;" class="relative blue"><div style="top:100px; left:100px;" class="absolute green"></div></div>
17 </body>
18 </html>