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

Unified Diff: tools/perf/page_sets/tough_video_cases/video.html

Issue 23456012: [Telemetry] Improve logging on media measurement tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix buffering_time sec to ms bug Created 7 years, 3 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
« no previous file with comments | « tools/perf/metrics/media.py ('k') | tools/telemetry/telemetry/page/actions/seek.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_video_cases/video.html
diff --git a/tools/perf/page_sets/tough_video_cases/video.html b/tools/perf/page_sets/tough_video_cases/video.html
index 2c7c9a08a38db4ff1ae384f7e52eba674523420c..e7e0334ece5a542377eccf3390aa80bb5ab2d8f9 100644
--- a/tools/perf/page_sets/tough_video_cases/video.html
+++ b/tools/perf/page_sets/tough_video_cases/video.html
@@ -25,9 +25,9 @@
return params;
}
qsParams = getQueryStrings();
- if (qsParams["type"] != "") {
+ if (qsParams["type"]) {
testElement = document.createElement(qsParams["type"]);
- if (qsParams["id"] != "")
+ if (qsParams["id"])
testElement.id = qsParams["id"];
testElement.src = qsParams["src"];
testElement.controls = true;
« no previous file with comments | « tools/perf/metrics/media.py ('k') | tools/telemetry/telemetry/page/actions/seek.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698