Chromium Code Reviews| 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..65775570d52aea5d6ffcb9c75f6a92b19256a626 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/keyboard-lock/idlharness.https.html |
| @@ -0,0 +1,34 @@ |
| +<!doctype html> |
| +<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> |
| +<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); |
|
foolip
2017/04/18 05:10:57
Copy the IDL from the spec, not Blink's IDL files.
Hzj_jie
2017/04/20 21:23:58
Done.
|
| + [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> |