mirror of
https://github.com/servo/servo.git
synced 2025-08-17 03:15:34 +01:00
Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
This commit is contained in:
parent
25e8bf69e6
commit
665817d2a6
35333 changed files with 1818077 additions and 16036 deletions
|
@ -0,0 +1,26 @@
|
|||
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 existent mark
|
||||
self.performance.clearMarks("mark1");
|
||||
|
||||
// test that "mark1" was cleared
|
||||
entries = self.performance.getEntriesByName("mark1");
|
||||
|
||||
assert_equals(entries.length, 0,
|
||||
"After a call to self.performance.clearMarks(\"mark1\"), " +
|
||||
"window.performance.getEntriesByName(\"mark1\") returns an empty object.");
|
||||
|
||||
// test that "mark2" still exists
|
||||
entries = self.performance.getEntriesByName("mark2");
|
||||
assert_equals(entries[0].name, "mark2",
|
||||
"After a call to self.performance.clearMarks(\"mark1\"), " +
|
||||
"window.performance.getEntriesByName(\"mark2\") returns an object containing the " +
|
||||
"\"mark2\" mark.");
|
||||
|
||||
}, "Clearing an existent mark doesn't affect other existing marks");
|
Loading…
Add table
Add a link
Reference in a new issue