20 lines
602 B
HTML
20 lines
602 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait"><head>
|
|
<meta name="viewport" content="initial-scale=1.5">
|
|
<style> html { direction: rtl; } </style>
|
|
</head>
|
|
<body>
|
|
<div style="height: 13333px; width: 6000px;"></div>
|
|
<script>
|
|
window.addEventListener("MozReftestInvalidate",
|
|
function() {
|
|
// The zooming due to the initial-scale will not preserve the default
|
|
// scroll position (top right corner) for an RTL scroll frame, so
|
|
// scroll to it explicitly.
|
|
window.scrollTo(scrollMaxX, 0);
|
|
document.documentElement.className = "";
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|