Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / overflow / fixed-children-should-not-scroll-expected.html
blob86c7178fecb4e9fe7c01817bcd711a99c96709be
1 <!DOCTYPE html>
2 <style>
3 #fixed {
4 position: absolute;
5 left: 300px;
6 top: 200px;
7 width: 100px;
8 height: 100px;
9 background-color: green;
12 #fixed-child {
13 position: absolute;
14 left: 25px;
15 top: 25px;
16 width: 50px;
17 height: 50px;
18 background-color: blue;
20 </style>
21 <div id="fixed">
22 <div id="fixed-child"></div>
23 </div>