- From: Grisha Lyukshin <notifications@github.com>
- Date: Wed, 30 Jun 2021 18:02:40 -0700
- To: w3c/editing <editing@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 1 July 2021 01:02:52 UTC
@gked commented on this pull request. > + Conformance requirements phrased as algorithms or specific steps may be + implemented in any manner, so long as the end result is equivalent. (In + particular, the algorithms defined in this specification are intended + to be easy to follow, and not intended to be performant.) + </p> + </section> + <section data-dfn-for="VirtualKeyboard"> + <h2>The <dfn>VirtualKeyboard</dfn> Interface</h2> + <pre class="idl"> + partial interface Navigator { + [SameObject] readonly attribute VirtualKeyboard virtualKeyboard; + }; + + [Exposed=Window] + interface VirtualKeyboard : EventTarget { + undefined show(); we were getting respec errors when we used `void`. Web IDL recommends using `undefined` instead of void https://heycam.github.io/webidl/#idl-undefined -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/editing/pull/309#discussion_r661902686
Received on Thursday, 1 July 2021 01:02:52 UTC