Index: LayoutTests/inspector-protocol/timeline/timeline-timer.html |
diff --git a/LayoutTests/inspector-protocol/timeline/timeline-timer.html b/LayoutTests/inspector-protocol/timeline/timeline-timer.html |
index 106935cde4a093e7c4fe9db74a91638b47d5e62e..d0d4e2d2f8978b4a622d927ad2562f5d49a71829 100644 |
--- a/LayoutTests/inspector-protocol/timeline/timeline-timer.html |
+++ b/LayoutTests/inspector-protocol/timeline/timeline-timer.html |
@@ -37,8 +37,8 @@ function test() |
var installTimer1 = InspectorTest.findEvent("TimerInstall", "I", hasTimerId.bind(this, firedTimerId)); |
var installTimer2 = InspectorTest.findEvent("TimerInstall", "I", hasTimerId.bind(this, removedTimerId)); |
- InspectorTest.assert(!!installTimer1.args.data.frame, "TimerInstall frame"); |
- InspectorTest.assertEquals(installTimer1.args.data.frame, installTimer2.args.data.frame, "TimerInstall frame match"); |
+ InspectorTest.log("TimerInstall has frame: " + !!installTimer1.args.data.frame); |
+ InspectorTest.log("TimerInstall frames match: " + (installTimer1.args.data.frame === installTimer2.args.data.frame)); |
InspectorTest.findEvent("TimerRemove", "I", hasTimerId.bind(this, removedTimerId)); |
InspectorTest.findEvent("TimerFire", "X", hasTimerId.bind(this, firedTimerId)); |