blob: 4a70bc5e6b8abb77e73fdb8c2a8e8ddca0910a25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<style>
.container {
-webkit-writing-mode: horizontal-bt;
height: 100px;
border: 1px solid black;
}
div {
height: 20px;
}
.box {
width: 20px;
height: 20px;
background-color: blue;
}
.transformed {
transform: translateZ(0);
}
span {
opacity: 0.8;
}
</style>
<div class="container">
<span>
<div class="transformed box"></div>
<div style="display: inline-block">This test should not assert in debug builds</div>
</span>
</div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
|