Revision 31c11a7a91486a50fceaa68f3773a5b915e8824d authored by Luke Bjerring on 20 March 2018, 13:10:20 UTC, committed by Philip Jägenstedt on 20 March 2018, 13:10:20 UTC
1 parent f2ae764
Raw File
clear_all_marks.any.js
test(function() {
    self.performance.mark("mark1");
    self.performance.mark("mark2");

    // test that two marks have been created
    var entries = self.performance.getEntriesByType("mark");
    assert_equals(entries.length, 2, "Two marks have been created for this test.");

    // clear all marks
    self.performance.clearMarks();

    // test that all marks were cleared
    entries = self.performance.getEntriesByType("mark");

    assert_equals(entries.length, 0, "All marks have been cleared.");

}, "Clearing all marks remove all of them.");
back to top