Skip to content

Instantly share code, notes, and snippets.

@tenbits
Last active May 30, 2018 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tenbits/9d60fe17cfb601effd396552707b9405 to your computer and use it in GitHub Desktop.
Save tenbits/9d60fe17cfb601effd396552707b9405 to your computer and use it in GitHub Desktop.
<html>
<script>
window.onload = function() {
nativeInterface.hideSplashScreen()
}
</script>
<style>
.with-css {
pointer-events: none;
user-select: none;
-webkit-touch-callout: none;
}
</style>
<div class='with-css'>With CSS</div>
<div aria-hidden="true">HIDDEN</div>
<div role="none">none</div>
<div role="presentation">presentation</div>
<div role="none" aria-disabled="true">disabled</div>
<div role="none" aria-label="other label">init label</div>
<div class='with-css' role='none'>Mixed CSS</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment