Duan Yao
Duan Yao
@joshuawarner32 Maybe wcstombs() function can do the conversion, and it is supported on *nix, windows, ios, android (>=2.3). http://www.cplusplus.com/reference/cstdlib/wcstombs/ http://www.cplusplus.com/reference/clocale/ http://msdn.microsoft.com/en-us/library/vstudio/5d7tc9zw.aspx https://developer.apple.com/library/ios/DOCUMENTATION/System/Conceptual/ManPages_iPhoneOS/man3/wcstombs.3.html http://www.kandroid.org/ndk/docs/system/libc/CHANGES.html By the may, ios and android use...
@joshuawarner32 In theory, you are right, wchar_t can be in any encoding; but in practice, wchar_t is implemented as either UTF-16 (windows) or UTF-32 (unix like system). I haven't hear...
If I understand right, @bigfatbrowncat wants to use system default MBS encoding, which can be set by `setlocale(LC_ALL,"")` http://www.cplusplus.com/reference/clocale/setlocale/ . UTF-16 to UTF-32 conversion should be easy. UCS-2 is same...
Yes, if some client JNI codes call setlocale with different parameters, we are out of luck. But I think most develpers will not do that, because setting non–default locale is...
I think I can take some time fix this bug in next few weeks.
Thanks for the explanation! Do you mean "integrate" by "embed the slides page inside an iframe"? This may work in some cases, but not if the current page has its...
If the timing of `DOMContentLoaded` and `load` is a problem, how about restrict `requestFullscreen()` without user interaction to first 3 seconds after `navigationStart`? I think this behavior more or less...
Right, but I think it's an acceptable limitation. If the network is slow, users can not expect seamless experience anyway.
Yes. My team developed a HTML5 presentation editor, and the presentations try to request full screen on loading. Currently only works in Firefox when `full-screen-api.allow-trusted-requests-only` is set to `false` (we...
@upsuper > I don't believe user would desire this kind of behavior, as it would break their normal expectation that clicking a link opens a page. I would consider it...