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

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

Issue 2805763004: [System-Keyboard-Lock] Forward navigator functions to RenderFrameHost (Closed)
Patch Set: Sync latest changes Created 3 years, 8 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
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..a7e603ecaee46f495c1f3142835af4b8f1f58c19
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html
@@ -0,0 +1,33 @@
+<!doctype html>
Hzj_jie 2017/04/18 02:26:08 It's weird: this test won't be executed on my mach
foolip 2017/04/18 05:10:57 Were you using run-webkit-tests? After running it
Hzj_jie 2017/04/19 00:45:55 Done.
+<html>
+<head>
+<title>Keyboard Lock IDL tests</title>
+<link rel="help" href="https://garykac.github.io/system-keyboard-lock/">
+<script src="../../../resources/testharness.js"></script>
foolip 2017/04/18 05:10:57 Not sure, but this may be the reason that the test
Hzj_jie 2017/04/19 00:45:55 Oh, yes, that's the reason. Updated. Sorry, I ver
foolip 2017/04/21 06:08:32 That is very strange, and sounds like a bug. Non-s
Hzj_jie 2017/04/22 01:20:24 The generated code looks correct, and both followi
+<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>
+<pre id="idl" style="display: none">
+partial interface Navigator {
+ [SecureContext, RuntimeEnabled=KeyboardLock, CallWith=ScriptState] Promise<void> requestKeyLock(optional sequence<DOMString> keyCodes);
+ [SecureContext, RuntimeEnabled=KeyboardLock] void cancelKeyLock();
+};
+</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>

Powered by Google App Engine
This is Rietveld 408576698