summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/api/resources/echo-fullscreenEnabled.html
blob: ad5edf79866273d0debb2dbc438e6dec6f305cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<script>
window.onmessage = (e) => {
  if (e.data === 'What is document.fullscreenEnabled?') {
    e.source.postMessage(document.fullscreenEnabled, '*');
  } else {
    e.source.postMessage('Incorrect message', '*');
  }
}
</script>
<p>This page echos document.fullscreenEnabled.</p>