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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html

Issue 2915203003: [System-Keyboard-Lock] Restore keyboard-lock tests (Closed)
Patch Set: Workaround testharness.js test requirement Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html b/third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html
new file mode 100644
index 0000000000000000000000000000000000000000..6fabb4117436570586032c7b20f9423e9d0a8276
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+<head>
+<title>Keyboard Lock IDL tests</title>
+<link rel="help" href="https://github.com/w3c/keyboard-lock"/>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/WebIDLParser.js"></script>
+<script src="/resources/idlharness.js"></script>
+</head>
+<body>
+<pre id="untested_idl" style="display: none">
+interface Navigator {
+};
+</pre>
+<!--
+ The reason of the failure of requestKeyboardLock test looks like a code defect in
+ idlharness.js. media-capabilities/idlharness.html is also impacted by this
+ issue. See https://codereview.chromium.org/2805763004/#ps620001, which
+ includes a potential fix.
+ TODO(zijiehe): Submit the fix.
+-->
+<pre id="idl" style="display: none">
+partial interface Navigator {
+ [SecureContext] Promise<void> requestKeyboardLock(optional sequence<DOMString> keyCodes = []);
+ [SecureContext] void cancelKeyboardLock();
+};
+</pre>
+<script>
+var idl_array = new IdlArray();
+idl_array.add_untested_idls(
+ document.getElementById("untested_idl").textContent);
+idl_array.add_idls(document.getElementById("idl").textContent);
+idl_array.add_objects({
+ Navigator: ["navigator"]
+});
+idl_array.test();
+</script>
+<div id="log"></div>
+</body>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698