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

Unified Diff: third_party/WebKit/LayoutTests/scrollbars/resize-scales-with-dpi-150.html

Issue 2835203005: Draw the text area resizer with drawing commands (Closed)
Patch Set: New baselines Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/scrollbars/resize-scales-with-dpi-150.html
diff --git a/third_party/WebKit/LayoutTests/scrollbars/resize-scales-with-dpi-150.html b/third_party/WebKit/LayoutTests/scrollbars/resize-scales-with-dpi-150.html
new file mode 100644
index 0000000000000000000000000000000000000000..bcd5765ad7e7849e1ea35af06ca533d1443bd8cb
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/scrollbars/resize-scales-with-dpi-150.html
@@ -0,0 +1,13 @@
+<script>
+ function setDPI() {
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.setBackingScaleFactor(1.5, function() { testRunner.notifyDone(); });
+ }
+ }
+</script>
+<body onload="setDPI();">
+ <div style="resize:both; overflow:scroll; width:200px; height:200px;">
+ The resize handle should grow with DPI.
+ </div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698