blob: 6dc81f8534a0c6fc35409d675101c0859242d76a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html style="writing-mode: vertical-rl;" class="reftest-wait">
<script>
function go() {
x.style.paddingRight='900%';
setTimeout(done, 0);
}
function done() {
document.documentElement.removeAttribute("class");
}
</script>
<body onload="go()">
<div style="transition-delay: 1ms;" id="x"></div>
<div style="position: relative; display: table-header-group;">
<div style="float: right; padding-top: 153%;"></div>
</div>
</body>
</html>
|