Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / background-attachment-local-repaint-expected.html
blob08cbbda1761f49a0c5a5eddf02366d1f56330be6
1 <!DOCTYPE html>
2 <style>
3 #container {
4 overflow: scroll;
5 width: 500px;
6 height: 400px;
8 background-attachment: local;
9 background-image: linear-gradient(black, white);
12 #bloat {
13 position: relative;
14 left: 0;
15 top: 10000px;
16 width: 1px;
17 height: 1px;
19 </style>
20 <div id="container">
21 <div id="bloat"></div>
22 </div>
23 This test verifies a overflow clip container with background-attachment:local correctly repaints when its overflow changes size without scrolling.