Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / background-image-paint-invalidation.html
blobacddd5270cf7d20fa3c2fa634435d92ddf24fc23
1 <!DOCTYPE html>
2 <body style="background: ; width: 800px; height: 2000px;">
3 </body>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5 <script>
6 // Tests that repaint when changing a document background image invalidates the whole document, not just the part that is visible on the screen.
8 function repaintTest() {
9 document.body.style.background = 'url(resources/ducky.png)';
11 runRepaintTest();
12 </script>