Diff
Modified: trunk/LayoutTests/ChangeLog (239957 => 239958)
--- trunk/LayoutTests/ChangeLog 2019-01-14 23:24:24 UTC (rev 239957)
+++ trunk/LayoutTests/ChangeLog 2019-01-14 23:45:41 UTC (rev 239958)
@@ -1,3 +1,12 @@
+2019-01-14 Jiewen Tan <[email protected]>
+
+ Unreviewed, test fixes after r239852.
+
+ * http/wpt/webauthn/public-key-credential-create-success-hid.https.html:
+ * http/wpt/webauthn/public-key-credential-create-success-u2f.https.html:
+ * http/wpt/webauthn/public-key-credential-get-success-hid.https.html:
+ * http/wpt/webauthn/public-key-credential-get-success-u2f.https.html:
+
2019-01-14 Justin Fan <[email protected]>
[WebGPU] Map WebGPUBindGroupLayoutBindings from the BindGroupLayoutDescriptor for error checking and later referencing
Modified: trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html (239957 => 239958)
--- trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html 2019-01-14 23:24:24 UTC (rev 239957)
+++ trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html 2019-01-14 23:45:41 UTC (rev 239958)
@@ -47,7 +47,7 @@
},
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
- timeout: 10
+ timeout: 100
}
};
@@ -70,7 +70,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
authenticatorSelection: { authenticatorAttachment: "cross-platform" },
- timeout: 10
+ timeout: 100
}
};
@@ -93,7 +93,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
authenticatorSelection: { requireResidentKey: false },
- timeout: 10
+ timeout: 100
}
};
@@ -116,7 +116,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
authenticatorSelection: { userVerification: "preferred" },
- timeout: 10
+ timeout: 100
}
};
@@ -139,7 +139,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
authenticatorSelection: { userVerification: "discouraged" },
- timeout: 10
+ timeout: 100
}
};
@@ -162,7 +162,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
authenticatorSelection: { authenticatorAttachment: "cross-platform", requireResidentKey: false, userVerification: "preferred" },
- timeout: 10
+ timeout: 100
}
};
Modified: trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-u2f.https.html (239957 => 239958)
--- trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-u2f.https.html 2019-01-14 23:24:24 UTC (rev 239957)
+++ trunk/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-u2f.https.html 2019-01-14 23:45:41 UTC (rev 239958)
@@ -42,7 +42,7 @@
},
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
- timeout: 10
+ timeout: 100
}
};
@@ -67,7 +67,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
excludeCredentials: [{ type: "public-key", id: Base64URL.parse(testCredentialIdBase64) }],
- timeout: 10
+ timeout: 100
}
};
@@ -92,7 +92,7 @@
challenge: Base64URL.parse("MTIzNDU2"),
pubKeyCredParams: [{ type: "public-key", alg: -7 }],
excludeCredentials: [{ type: "public-key", id: Base64URL.parse(testCredentialIdBase64) }, { type: "public-key", id: Base64URL.parse(testCredentialIdBase64) }], // The content doesn't matter.
- timeout: 10
+ timeout: 100
}
};
Modified: trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html (239957 => 239958)
--- trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html 2019-01-14 23:24:24 UTC (rev 239957)
+++ trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html 2019-01-14 23:45:41 UTC (rev 239958)
@@ -28,7 +28,7 @@
const options = {
publicKey: {
challenge: Base64URL.parse("MTIzNDU2"),
- timeout: 10
+ timeout: 100
}
};
@@ -44,7 +44,7 @@
allowCredentials: [
{ type: "public-key", id: Base64URL.parse(testHidCredentialIdBase64), transports: ["usb"] }
],
- timeout: 10
+ timeout: 100
}
};
@@ -58,7 +58,7 @@
publicKey: {
challenge: Base64URL.parse("MTIzNDU2"),
userVerification: "preferred",
- timeout: 10
+ timeout: 100
}
};
@@ -72,7 +72,7 @@
publicKey: {
challenge: Base64URL.parse("MTIzNDU2"),
userVerification: "discouraged",
- timeout: 10
+ timeout: 100
}
};
@@ -89,7 +89,7 @@
{ type: "public-key", id: Base64URL.parse(testHidCredentialIdBase64), transports: ["usb"] }
],
userVerification: "preferred",
- timeout: 10
+ timeout: 100
}
};
Modified: trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-u2f.https.html (239957 => 239958)
--- trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-u2f.https.html 2019-01-14 23:24:24 UTC (rev 239957)
+++ trunk/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-u2f.https.html 2019-01-14 23:45:41 UTC (rev 239958)
@@ -25,7 +25,7 @@
publicKey: {
challenge: Base64URL.parse("MTIzNDU2"),
allowCredentials: [{ type: "public-key", id: Base64URL.parse(testU2fCredentialIdBase64) }],
- timeout: 10
+ timeout: 100
}
};
@@ -41,7 +41,7 @@
publicKey: {
challenge: Base64URL.parse("MTIzNDU2"),
allowCredentials: [{ type: "public-key", id: Base64URL.parse(testCredentialIdBase64) }, { type: "public-key", id: Base64URL.parse(testU2fCredentialIdBase64) }],
- timeout: 10
+ timeout: 100
}
};