https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 21f1c08f6e5d4ead08f51968aa6246b2c54b7f15 authored by Geoffrey Sneddon on 10 April 2018, 07:46:22 UTC
Fix #10388: Make resources/test use the upstream config
Tip revision: 21f1c08
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