<!--
Copyright 2015 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<title>Automation Tests - Bounds for Range</title>
<meta charset="utf-8">
<style>
li {
font-size: 16pt;
margin: 20px;
}
</style>
</head>
<body>
<ul>
<li id="ltr">Hello world</li>
<li id="rtl">שלום עולם</li>
<li id="ttb" style="-webkit-writing-mode: vertical-lr">Hello world</li>
<li id="btt" style="-webkit-writing-mode: vertical-rl">שלום עולם</li>
</ul>
<div style="width: 50px; overflow: hidden">
<p style="width: 200px">This text overflows</p>
</div>
<div style="width: 0; height: 0; overflow: hidden">
<p>This text is hidden</p>
</div>
</body>
</html>