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

Unified Diff: LayoutTests/inspector/timeline/timeline-start-time.html

Issue 212893002: Use monotonicallyIncreasingTime for Timeline timestamps (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed a test, it's not applicable now Created 6 years, 9 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 | « LayoutTests/TestExpectations ('k') | LayoutTests/inspector/timeline/timeline-start-time-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/timeline/timeline-start-time.html
diff --git a/LayoutTests/inspector/timeline/timeline-start-time.html b/LayoutTests/inspector/timeline/timeline-start-time.html
deleted file mode 100644
index ec237cb8e4deee1a923a63b44d9bb4a7fb595adf..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/timeline/timeline-start-time.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/timeline-test.js"></script>
-<script>
-
-function performActions()
-{
- console.timeStamp("time is an illusion");
-}
-
-function test()
-{
- var beforeStart = Date.now();
- InspectorTest.startTimeline();
- InspectorTest.waitForRecordType("TimeStamp", onTimeStamp);
- InspectorTest.evaluateInPage("performActions()");
-
- function onTimeStamp(record)
- {
- var now = Date.now();
- var eventTime = record.startTime;
- InspectorTest.assertGreaterOrEqual(eventTime, beforeStart, "event time should be after timeline start time");
- InspectorTest.assertGreaterOrEqual(now, Math.floor(eventTime), "event time should be before now");
- InspectorTest.addResult("done");
- InspectorTest.stopTimeline(InspectorTest.completeTest.bind(InspectorTest));
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests sanity of timeline timestamps.
-</p>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/inspector/timeline/timeline-start-time-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698