summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html b/testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html
new file mode 100644
index 0000000000..2ee601d16d
--- /dev/null
+++ b/testing/web-platform/tests/css/css-writing-modes/reference/scrollbar-vertical-rl-ref.html
@@ -0,0 +1,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>