зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1568578 [wpt PR 18049] - [ElementTiming] Add Element's elementTiming attribute getter, a=testonly
Automatic update from web-platform-tests [ElementTiming] Add Element's elementTiming attribute getter Relevant Intent to Ship: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/DXSoS7dMmok Bug: 879270, 942033 Change-Id: I399489e766f4eafdd3087f159320dc3211bf1c01 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1715257 Reviewed-by: Yoav Weiss <yoavweiss@chromium.org> Commit-Queue: Nicolás Peña Moreno <npm@chromium.org> Cr-Commit-Position: refs/heads/master@{#681013} -- wpt-commits: 74c79eb58391db63257b1ae9adddcd32395a1ab0 wpt-pr: 18049
This commit is contained in:
Родитель
411ef7316b
Коммит
ba2bcea094
|
@ -9,8 +9,11 @@ function checkElementInternal(entry, expectedUrl, expectedIdentifier, expectedID
|
|||
assert_equals(entry.id, expectedID);
|
||||
assert_greater_than_equal(entry.renderTime, beforeRender);
|
||||
assert_greater_than_equal(performance.now(), entry.renderTime);
|
||||
if (expectedElement !== null)
|
||||
if (expectedElement !== null) {
|
||||
assert_equals(entry.element, expectedElement);
|
||||
assert_equals(entry.identifier, expectedElement.elementTiming);
|
||||
assert_equals(entry.id, expectedElement.id);
|
||||
}
|
||||
}
|
||||
|
||||
// Checks that this is an ElementTiming entry with url |expectedUrl|. It also
|
||||
|
|
Загрузка…
Ссылка в новой задаче