Lines Matching refs:timing
75 var msg = "window.performance.timing." + attribute_name + " > 0";
76 wp_test(function() { assert_true(performanceNamespace.timing[attribute_name] > 0, msg); }, msg, properties);
79 msg = "window.performance.timing." + attribute_name + " >= window.performance.timing." + greater_than_attribute;
80 wp_test(function() { assert_true(performanceNamespace.timing[attribute_name] >= performanceNamespace.timing[greater_than_attribute], msg); }, msg, properties);
85 var msg = "window.performance.timing." + attribute_name + " > " + greater_than;
86 test_greater_than(performanceNamespace.timing[attribute_name], greater_than, msg, properties);
91 var test_msg = msg || "window.performance.timing." + attribute_name + " == " + equals;
92 test_equals(performanceNamespace.timing[attribute_name], equals, test_msg, properties);