Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/hidpi/scrollbar-appearance-increase-device-scale-factor.html

Issue 2377453004: Scrollbar width is set using thickness to compute correct rect size (Closed)
Patch Set: Resolved merge conflicts for update bots and Updated Layout Test HTML Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 function finishTest() {
4 testRunner.notifyDone();
5 }
6 function scaleUp() {
7 testRunner.setBackingScaleFactor(3, finishTest);
8 }
9 function startTest() {
10 testRunner.waitUntilDone();
11 setTimeout(scaleUp, 0);
12 }
13 if (window.testRunner) {
14 onload = startTest;
15 }
16 </script>
17 <div id="div" style="width:200px; height:120px; overflow:auto">
18 <br>This should be a scrollable text box with horizontal and vertical scroll.
19 <div style="width:400px; height: 200px"></div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698