Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/single-axis-overflow-clip-rtl.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Single-axis scroll containers: Clipped X Rendering RTL</title>
<link rel="match" href="single-axis-overflow-clip-rtl-ref.html">
<style>
#scroller {
width: 100px;
height: 100px;
direction: rtl;
overflow-x: clip; /* Test subject */
overflow-y: hidden;
}
#content {
width: 300px;
height: 300px;
background: linear-gradient(to right, lightcoral, lightblue);
color: black;
font-family: sans-serif;
font-size: 20px;
}
</style>
<div id="scroller">
<div id="content">RTL gradient and text</div>
</div>