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

Unified Diff: third_party/WebKit/LayoutTests/fast/hidpi/resize-corner-hidpi.html

Issue 1908463002: Modernize fast/hidpi layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add NeedsManualRebaseline Created 4 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/fast/hidpi/resize-corner-hidpi.html
diff --git a/third_party/WebKit/LayoutTests/fast/hidpi/resize-corner-hidpi.html b/third_party/WebKit/LayoutTests/fast/hidpi/resize-corner-hidpi.html
index 3d57d504dc740eeeadac7ff2a1d5d7ad514219f1..d113639b0c81b04aab13a6b58862c3ee3bb02279 100644
--- a/third_party/WebKit/LayoutTests/fast/hidpi/resize-corner-hidpi.html
+++ b/third_party/WebKit/LayoutTests/fast/hidpi/resize-corner-hidpi.html
@@ -1,19 +1,12 @@
-<html>
- <script>
- function startTest() {
- if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.setBackingScaleFactor(2, finishTest);
- }
- }
-
- function finishTest() {
- setTimeout(function() { testRunner.notifyDone(); }, 0);
- }
- </script>
- </head>
- <body onload="startTest();">
- <div>This test passes if the resize corner icon appears high-resolution in HiDPI.</div>
- <textarea style="resize:both;"></textarea>
- </body>
-</html>
+<!DOCTYPE html>
+<div>This test passes if the resize corner icon appears high-resolution in HiDPI.</div>
+<textarea style="resize: both"></textarea>
+<script>
+ function finishTest() {
+ setTimeout(function() { testRunner.notifyDone(); }, 0);
+ }
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.setBackingScaleFactor(2, finishTest);
+ }
+</script>

Powered by Google App Engine
This is Rietveld 408576698