Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / flipped-blocks-inline-mapping.html
blob4a70bc5e6b8abb77e73fdb8c2a8e8ddca0910a25
1 <style>
2 .container {
3 -webkit-writing-mode: horizontal-bt;
4 height: 100px;
5 border: 1px solid black;
7 div {
8 height: 20px;
10 .box {
11 width: 20px;
12 height: 20px;
13 background-color: blue;
16 .transformed {
17 transform: translateZ(0);
19 span {
20 opacity: 0.8;
23 </style>
24 <div class="container">
25 <span>
26 <div class="transformed box"></div>
27 <div style="display: inline-block">This test should not assert in debug builds</div>
28 </span>
29 </div>
30 <script>
31 if (window.testRunner)
32 testRunner.dumpAsText();
33 </script>