123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Simple HTML Example</title>
- <style>
- iframe {
- width: 100%;
- height: 300px;
- }
- </style>
- <script>
- window.addEventListener("error", function (event) {
- if (true) {
- console.log("Intercepted missing script: ", event.target.src);
- event.preventDefault(); // Prevents default error logging
- event.stopPropagation();
- return true;
- }
- }, true);
- window.onerror = function (message, source, lineno, colno, error) {
- if (true) {
- console.log("Intercepted a 404 error, hiding it.");
- return true; // Prevents logging to the console
- }
- return false; // Allows other errors to be logged
- };
- console.error = () => {
- console.log("err RUN")
- }
- </script>
- <script src="/t.js"></script>
- <script src="/t1.js"></script>
- </head>
- <body>
- <h1>Welcome Parent VS CODE PAGE</h1>
- <!-- <iframe src="/iframe.html"></iframe> -->
- </body>
- </html>
|