Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / transformed-overflow-hidden-clips-fixed.html
blobbc821b66e9ba63a1556af17fce98af2152af37bb
1 <!DOCTYPE html>
2 <style>
3 #transformed {
4 overflow: hidden;
5 transform: translateZ(0);
6 height: 100px;
7 width: 100px;
8 background-color: salmon;
10 #fixed {
11 position: fixed;
12 background-color: chartreuse;
13 width: 100px;
14 height: 100px;
15 top: -50px;
17 </style>
18 <div id="transformed">
19 <div id="fixed"></div>
20 </div>