| Index: third_party/WebKit/LayoutTests/fast/hidpi/scrollbar-appearance-decrease-device-scale-factor.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/hidpi/scrollbar-appearance-decrease-device-scale-factor.html b/third_party/WebKit/LayoutTests/fast/hidpi/scrollbar-appearance-decrease-device-scale-factor.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..15f8d4e6f08f1ebbe110536fae0e76f53f0cea58
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/hidpi/scrollbar-appearance-decrease-device-scale-factor.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + function finishTest() {
|
| + testRunner.notifyDone();
|
| + }
|
| +
|
| + function scaleDown() {
|
| + testRunner.setBackingScaleFactor(1, finishTest);
|
| + }
|
| + function startTest() {
|
| + testRunner.waitUntilDone();
|
| + testRunner.setBackingScaleFactor(3, scaleDown);
|
| + }
|
| + if (window.testRunner) {
|
| + onload = startTest;
|
| + }
|
| +</script>
|
| +<div id="div" style="width:200px; height:120px; overflow:auto">
|
| + <br>This should be a scrollable text box with horizontal and vertical scroll.
|
| + <div style="width:400px; height: 200px;"></div>
|
| +</div>
|
|
|