Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / resources / fixed-iframe-content.html
blob0481fe1a8abe84972f80df81e241c166f23c89c3
1 <!DOCTYPE html>
2 <div id="div" style="width: 100px; height: 100px; background-color: red"></div>
3 <script>
4 // For manual testing in browser when cross frame scripting is not allowed.
5 if (!window.testRunner) {
6 setTimeout(function() {
7 document.getElementById('div').style.backgroundColor = 'green';
8 }, 500);
10 </script>