https://mathadventure1.github.io/sm64/sm64/index.html

Eingereichte URL:
https://mathadventure1.github.io/sm64/sm64/index.html
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

JavaScript-Variablen · 596 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
Moduleobject
moduleOverridesobject
keystring
arguments_object
thisProgramstring
quit_function
ENVIRONMENT_IS_WEBboolean

Konsolenprotokoll-Meldungen · 9 gefunden

In der Web-Konsole protokollierte Meldungen

TypKategorieProtokoll
warningother
Text
Error with Permissions-Policy header: Origin trial controlled feature not enabled: 'interest-cohort'.
logother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Loading configuration from 'sm64config.txt'
logother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Config file 'sm64config.txt' not found. Creating it.
logother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Saving configuration to 'sm64config.txt'
errorother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Calling stub instead of sigaction()
errorother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Calling stub instead of sigaction()
errorother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
exception thrown: TypeError: Cannot read properties of undefined (reading 'createBuffer'),TypeError: Cannot read properties of undefined (reading 'createBuffer') at __glGenObject (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:6548:27) at _glGenBuffers (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:8517:7) at gfx_opengl_init (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.wasm:wasm-function[2643]:0xd43f0) at gfx_init (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.wasm:wasm-function[2645]:0xd4465) at main_func (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.wasm:wasm-function[2606]:0xd1de5) at main (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.wasm:wasm-function[2610]:0xd1f58) at Module._main (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:8814:32) at callMain (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:9306:15) at doRun (https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:9368:23) at https://mathadventure1.github.io/sm64/sm64/sm64.us.f3dex2e.js:9379:7
logother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Stack overflow! Stack cookie has been overwritten, expected hex dwords 0x89BACDFE and 0x2135467, but received 0x0 daf79c
errorother
URL
https://mathadventure1.github.io/sm64/sm64/index.html
Text
Stack overflow! Stack cookie has been overwritten, expected hex dwords 0x89BACDFE and 0x2135467, but received 0x0 daf79c

HTML

Der HTML-Rohtext der Seite

<!DOCTYPE html><html lang="en-us"><head>
    <meta charset="utf-8">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Super Mario 64</title>
    <link rel="shortcut icon" href="logo.png">
    <style>
      body, html{
        margin: 0;
        padding: 0;
        width: 100vw;
        min-height: 100vh;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        background-color: black;
        image-rendering: pixelated;
        scrollbar-width: none;
      }
      ::-webkit-scrollbar {
        display: none;
      }
      #container {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      canvas {
        width: 100vw;
        height: 100vh;
      }
    </style>
  </head>
  <body>
    <div id="container">
      <canvas class="emscripten" id="canvas" width="800" height="600"></canvas>
    </div>
    <script type="text/javascript">
      var Module = {
        preRun: [],
        postRun: [],
        print: (function() {
          return function(text) {
            if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' ');
            console.log(text);
          };
        })(),
        printErr: function(text) {
          if (arguments.length > 1)
            text = Array.prototype.slice.call(arguments).join(' ');
          console.error(text);
        },
        canvas: (function() {
          var canvas = document.getElementById('canvas');
          canvas.width = window.innerWidth; // Todo: how to do this from c++
          canvas.height = window.innerHeight;
          canvas.addEventListener("webglcontextlost", function(e) {
            alert('WebGL context lost. You will need to reload the page.');
            e.preventDefault();
          }, false);
          return canvas;
        })(),
        setStatus: function(text) {
        }
      };
    </script>
    <script async="" type="text/javascript" src="sm64.us.f3dex2e.js"></script>
    <script>
    </script>
  




</body></html>