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

Unified Diff: tools/telemetry/unittest_data/scrollable_page.html

Issue 1217293007: Move unittest_data to internal/testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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: tools/telemetry/unittest_data/scrollable_page.html
diff --git a/tools/telemetry/unittest_data/scrollable_page.html b/tools/telemetry/unittest_data/scrollable_page.html
deleted file mode 100644
index c50175b5289068c177d672922d49d0e5589b8158..0000000000000000000000000000000000000000
--- a/tools/telemetry/unittest_data/scrollable_page.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style type="text/css">
- body { height: 200vh; }
- </style>
- </head>
- <body>
- <!--
- Below info are used in smoothness unittest only. use URL below to get the
- diagnostic info which is used when this page failed in test due to the
- scroll bar didn't show up.
- scrollable_page.html?show_scroll_diagnosis_info
- -->
- <div id="info"></div>
- <script>
- var txt = "<h3>Screen info (Used for diagnosis):</h3>"
- + "<p>Total width/height: " + screen.width + "*" + screen.height
- + "</p><p>Available width/height: " + screen.availWidth + "*"
- + screen.availHeight + "</p><p>Color depth: "
- + screen.colorDepth + "</p><p>Color resolution: "
- + screen.pixelDepth + "</p><p>Body scrollable height: "
- + document.body.scrollHeight + "</p><p>Body offset height: "
- + document.body.offsetHeight + "</p><p>Body client height: "
- + document.body.clientHeight + "</p><p>Window inner height: "
- + window.innerHeight + "</p><p>Window device Pixel Ratio: "
- + window.devicePixelRatio + "</p>";
- if (window.location.search.substr(1) == "show_scroll_diagnosis_info") {
- document.getElementById("info").innerHTML = txt;
- }
- </script>
- </body>
-</html>
« no previous file with comments | « tools/telemetry/unittest_data/screen_3_frames.mov ('k') | tools/telemetry/unittest_data/simple_app/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698