summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html
blob: 2ee601d16d25ba50e002cfba66fe79c4a13ad9ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <title>CSS Writing Modes Test: vertical-rl painting with vertical scrollbar reference</title>
  <link rel="author" title="Aleks Totic" href="atotic@chromium.org" />
  <style>
    #container {
      width: 300px;
      height: 200px;
      border: 1px solid black;
      writing-mode: vertical-rl;
      overflow: scroll;
      background: blue;
    }
    #target {
      width:500px;
    }
  </style>
<div id="container">
  <div id="target"><br></div>
</div>