Update web-platform-tests to revision 0a518aaff73532a26e175789f7e75fa99593ac64

This commit is contained in:
Ms2ger 2016-04-21 11:33:07 +02:00
parent 9c172f49d0
commit abcd4b654f
92 changed files with 2869 additions and 642 deletions

View file

@ -161,6 +161,13 @@ function resource_load(expected)
t["timing_attrs"].step(function test() {
var actual = window.performance.getEntriesByName(expected.name)[0];
// Debugging bug 1263428
// Feel free to remove/overwrite this piece of code
if (actual.connectStart < actual.domainLookupEnd) {
assert_true(false, "actual: "+JSON.stringify(actual));
}
assert_equals(actual.redirectStart, 0, "redirectStart time");
assert_equals(actual.redirectEnd, 0, "redirectEnd time");
assert_true(actual.secureConnectionStart == undefined ||