Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: LayoutTests/http/tests/w3c/webperf/approved/UserTiming/test_user_timing_mark-expected.txt

Issue 1154773008: testharnessreport: Remove Text children of the body. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update form-validation-reportValidity-expected.txt Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 After creating each mark, the existence of these marks is validated by calling p erformance.getEntriesByName() (both with and without the entryType parameter pro vided), performance.getEntriesByType(), and performance.getEntries()
2 This is a testharness.js-based test.
3 PASS window.performance is defined
4 PASS window.performance.getEntriesByName("mark1")[0].name == "mark1"
5 PASS window.performance.getEntriesByName("mark1")[0].startTime ~== (up to 20ms difference allowed)
6 PASS window.performance.getEntriesByName("mark1")[0].entryType == "mark"
7 PASS window.performance.getEntriesByName("mark1")[0].duration == 0
8 PASS window.performance.getEntriesByName("mark1")[1].name == "mark1"
9 PASS window.performance.getEntriesByName("mark1")[1].startTime ~== (up to 20ms difference allowed)
10 PASS window.performance.getEntriesByName("mark1")[1].entryType == "mark"
11 PASS window.performance.getEntriesByName("mark1")[1].duration == 0
12 PASS window.performance.getEntriesByName("mark1", "mark") returns an object cont aining the "mark1" mark in the correct order
13 PASS window.performance.getEntriesByName("mark1", "mark") returns an object cont aining the duplicate "mark1" mark in the correct order
14 PASS The "mark1" mark returned by window.performance.getEntriesByName("mark1", " mark") matches the the "mark1" mark returned by window.performance.getEntriesByN ame("mark1")
15 PASS The duplicate "mark1" mark returned by window.performance.getEntriesByName( "mark1", "mark") matches the the duplicate "mark1" mark returned by window.perfo rmance.getEntriesByName("mark1")
16 PASS window.performance.getEntries() returns an object containing the original " mark1" mark in the correct order
17 PASS window.performance.getEntries() returns an object containing the duplicate "mark1" mark in the correct order
18 PASS The "mark1" mark returned by window.performance.getEntries() matches the th e "mark1" mark returned by window.performance.getEntriesByName("mark1")
19 PASS The "mark1" mark returned by window.performance.getEntries() matches the th e duplicate "mark1" mark returned by window.performance.getEntriesByName("mark1" )
20 PASS window.performance.getEntriesByType("mark") returns an object containing th e original "mark1" mark in the correct order
21 PASS window.performance.getEntriesByType("mark") returns an object containing th e duplicate "mark1" mark in the correct order
22 PASS The "mark1" mark returned by window.performance.getEntriesByType("mark") ma tches the the "mark1" mark returned by window.performance.getEntriesByName("mark 1")
23 PASS The "mark1" mark returned by window.performance.getEntriesByType("mark") ma tches the the duplicate "mark1" mark returned by window.performance.getEntriesBy Name("mark1")
24 Harness: the test ran to completion.
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698